/* =====================================================================
   Macho Movers GTA — main stylesheet
   ===================================================================== */

:root {
	--brand: #0066cc;
	--brand-dark: #004ea8;
	--navy: #0b2545;
	--navy-2: #11325c;
	--accent: #c08457;
	--ink: #0f172a;
	--text: #334155;
	--muted: #64748b;
	--bg: #ffffff;
	--bg-2: #f5f8fb;
	--bg-3: #eef3f8;
	--border: #e2e8f0;
	--success: #16a34a;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
	--shadow:    0 10px 25px -10px rgba(15,23,42,.18);
	--shadow-lg: 0 25px 60px -20px rgba(15,23,42,.25);
	--radius: 14px;
	--radius-lg: 22px;
	--container: 1240px;
	--font-display: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-body:    'Inter',   system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); margin: 0 0 .6em; line-height: 1.2; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }
button { font-family: inherit; }
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-dark { background: var(--navy); color: #cbd5e1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
	display: inline-flex; align-items: center; gap: .45rem;
	font-family: var(--font-display); font-weight: 600; font-size: .85rem;
	color: var(--brand); text-transform: uppercase; letter-spacing: .12em;
	background: rgba(30,167,230,.1); padding: .4rem .8rem; border-radius: 999px;
	margin-bottom: 1rem;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.12); }
.section__header { max-width: 720px; margin: 0 auto 3rem; }
.section__header p { color: var(--muted); font-size: 1.05rem; }
.lead { font-size: 1.1rem; color: var(--text); }
.screen-reader-text {
	position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--brand); color: #fff; padding: .5rem 1rem; z-index: 9999; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--font-display); font-weight: 600; font-size: 1rem;
	padding: .85rem 1.4rem; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; margin-top: .5rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 22px -8px rgba(30,167,230,.7); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(30,167,230,.8); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.section-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink); }
.btn-ghost { background: rgba(15,23,42,.06); color: var(--ink); }
.btn-ghost:hover { background: rgba(15,23,42,.12); color: var(--ink); }
.section-dark .btn-ghost { background: rgba(255,255,255,.1); color: #fff; }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.link-arrow:hover i { transform: translateX(4px); }
.link-arrow i { transition: transform .2s ease; }

/* ---------- Topbar / Header ---------- */
.topbar { background: var(--navy); color: #cbd5e1; font-size: .86rem; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; }
.topbar__inner {
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: nowrap; padding: .5rem 0; gap: 1rem;
}
.topbar__tagline {
	display: flex; align-items: center; gap: .4rem;
	font-size: .82rem; opacity: .75; white-space: nowrap;
}
.topbar__tagline .bi { color: var(--brand); }
.topbar__contact {
	display: flex; gap: 1.5rem; align-items: center;
	flex-shrink: 0;
}
.topbar__contact i { color: var(--brand); margin-right: .3rem; }

.site-header {
	background: #fff; position: sticky; top: 0; z-index: 100;
	box-shadow: 0 1px 0 rgba(15,23,42,.06);
	transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -10px rgba(15,23,42,.18); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; padding: .85rem 0; }
.mmgta-logo img { height: 80px; width: auto; }
.mmgta-logo--footer img { height: 80px; }
.main-navigation { margin-left: auto; }
.main-navigation .menu, .main-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.6rem; align-items: center; }
.main-navigation a {
	font-family: var(--font-display); font-weight: 600; color: var(--ink);
	font-size: .98rem; padding: .5rem 0; position: relative;
}
.main-navigation a:hover { color: var(--brand); }
.main-navigation .current-menu-item > a {
	color: #fff;
	background: var(--brand);
	padding: .35rem .85rem;
	border-radius: 6px;
}
.main-navigation .has-dropdown { position: relative; }
.main-navigation .sub-menu {
	position: absolute; left: 0; top: 100%; min-width: 240px;
	background: #fff; border: 1px solid var(--border); border-radius: 12px;
	box-shadow: var(--shadow-lg); padding: .6rem;
	display: flex; flex-direction: column; gap: 0;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-navigation .has-dropdown:hover .sub-menu,
.main-navigation .has-dropdown:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation .sub-menu li { width: 100%; }
.main-navigation .sub-menu a { display: block; padding: .55rem .75rem; border-radius: 8px; }
.main-navigation .sub-menu a:hover { background: var(--bg-2); }
.site-header__cta { margin-left: .5rem; }

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; transition: transform .2s, opacity .2s; }
.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); }

@media (max-width: 1024px) {
	.site-header__cta { display: none; }
	.nav-toggle { display: block; margin-left: auto; }
	/* Hide the desktop inline nav on mobile — drawer takes over */
	.main-navigation { display: none; }
}

/* ============================================================
   MOBILE DRAWER (slide-in from right)
   ============================================================ */
.drawer-overlay {
	display: none;
	position: fixed; inset: 0;
	background: rgba(11,37,69,.62);
	z-index: 998;
	opacity: 0;
	transition: opacity .3s ease;
}
.drawer-overlay.is-active { opacity: 1; }

.mobile-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: min(340px, 88vw);
	background: #fff;
	z-index: 999;
	transform: translateX(105%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
	overflow-y: auto; overflow-x: hidden;
	display: flex; flex-direction: column;
	box-shadow: -4px 0 32px rgba(11,37,69,.18);
}
.mobile-drawer.is-open { transform: translateX(0); }

/* --- Drawer header (logo + close) --- */
.mobile-drawer__header {
	display: flex; align-items: center; justify-content: space-between;
	padding: .9rem 1.25rem;
	border-bottom: 1px solid var(--border);
	position: sticky; top: 0; background: #fff; z-index: 2;
	flex-shrink: 0;
}
.mobile-drawer__logo .mmgta-logo img { height: 50px; width: auto; }
.drawer-close {
	background: transparent; border: 0; cursor: pointer;
	font-size: 1.5rem; line-height: 1; color: var(--ink);
	padding: .3rem .4rem; border-radius: 6px;
	transition: color .15s, background .15s;
}
.drawer-close:hover { color: var(--brand); background: var(--bg-2); }

/* --- Drawer nav menu --- */
.mobile-drawer__nav { border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mobile-drawer__nav .menu,
.mobile-drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer__nav .menu > li > a {
	display: block; padding: .9rem 1.5rem;
	font-family: var(--font-display); font-weight: 600; font-size: 1rem;
	color: var(--ink); border-bottom: 1px solid var(--bg-3);
	transition: color .15s, background .15s;
}
.mobile-drawer__nav .menu > li:last-child > a { border-bottom: 0; }
.mobile-drawer__nav .menu > li > a:hover { color: var(--brand); background: var(--bg-2); }
.mobile-drawer__nav .current-menu-item > a {
	color: var(--brand); background: rgba(0,102,204,.06);
	border-left: 3px solid var(--brand); padding-left: calc(1.5rem - 3px);
}
/* Drawer sub-menu */
.mobile-drawer__nav .sub-menu {
	list-style: none; margin: 0; padding: 0;
	background: var(--bg-2);
}
.mobile-drawer__nav .sub-menu a {
	display: block; padding: .65rem 1.5rem .65rem 2.25rem;
	font-size: .9rem; color: var(--ink-light);
	border-bottom: 1px solid var(--border);
	transition: color .15s;
}
.mobile-drawer__nav .sub-menu a:hover { color: var(--brand); }
.mobile-drawer__nav .dropdown-toggle { display: none; }

/* --- Drawer contact block --- */
.mobile-drawer__contact {
	padding: 1.25rem 1.5rem 2rem;
	display: flex; flex-direction: column; gap: .8rem;
	flex: 1;
}
.mobile-drawer__contact-title {
	font-family: var(--font-display); font-weight: 700;
	font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--brand);
}
.mobile-drawer__contact > a {
	display: flex; align-items: center; gap: .55rem;
	font-weight: 600; color: var(--ink); font-size: .95rem;
	transition: color .15s;
}
.mobile-drawer__contact > a:hover { color: var(--brand); }
.mobile-drawer__contact > a i { color: var(--brand); font-size: 1rem; flex-shrink: 0; }

.mobile-drawer__area {
	font-size: .83rem; color: var(--ink-light); line-height: 1.65;
}
.mobile-drawer__area strong,
.mobile-drawer__hours strong {
	display: block; font-size: .68rem; text-transform: uppercase;
	letter-spacing: .12em; color: var(--ink); margin-bottom: .25rem;
	font-family: var(--font-display);
}
.mobile-drawer__hours { font-size: .88rem; }
.mobile-drawer__hours span { color: var(--ink-light); }

.mobile-drawer__social {
	display: flex; gap: .65rem; margin-top: .25rem;
}
.mobile-drawer__social a {
	display: flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: var(--bg-2); color: var(--ink); font-size: 1.05rem;
	transition: background .2s, color .2s;
}
.mobile-drawer__social a:hover { background: var(--brand); color: #fff; }

/* Hide drawer on desktop */
@media (min-width: 1025px) {
	.mobile-drawer,
	.drawer-overlay { display: none !important; }
}

/* ---------- Topbar mobile ---------- */
@media (max-width: 860px) {
	/* Hide tagline — keep only phone + email */
	.topbar__tagline { display: none; }
	.topbar__inner { justify-content: center; }
	.topbar__contact { gap: 1.2rem; }
}
@media (max-width: 540px) {
	.topbar { font-size: .78rem; }
	.topbar__contact { gap: .9rem; }
	.topbar__inner { padding: .4rem 0; }
}

/* ---------- HERO ---------- */
.hero {
	position: relative; isolation: isolate;
	color: #fff; padding: clamp(4rem, 9vw, 7rem) 0;
	background: linear-gradient(135deg, #0b2545 0%, #103766 55%, #0b2545 100%);
	overflow: hidden;
}
.hero__bg {
	position: absolute; inset: 0; z-index: -1;
	background-size: cover; background-position: center;
	background-image: url('../images/hero-bg.jpg');
	opacity: .45;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,37,69,.82), rgba(16,55,102,.68)); }

/* Video background */
.hero__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	pointer-events: none;
}
.hero__video--yt {
	/* YouTube iframe: scale up to cover like object-fit:cover */
	width: 177.78vh; /* 16:9 */
	min-width: 100%; min-height: 56.25vw;
	height: 56.25vw;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: auto; height: auto;
	min-width: 100%; min-height: 100%;
}
/* Reduce overlay opacity slightly so video is visible */
.hero--video .hero__bg { opacity: 1; }
.hero--video .hero__overlay { background: linear-gradient(135deg, rgba(11,37,69,.78), rgba(16,55,102,.62)); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: center; }
.hero__text h1 { color: #fff; }
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: var(--font-display); font-weight: 600;
	font-size: .85rem; text-transform: uppercase; letter-spacing: .12em;
	background: rgba(255,255,255,.12); padding: .45rem 1rem; border-radius: 999px;
	margin-bottom: 1.2rem; color: #cbe9fa;
}
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.05; margin-bottom: 1.2rem; }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 600px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Inverted outline button so it reads on the dark hero */
.hero .btn-outline {
	color: #fff;
	border-color: rgba(255,255,255,.6);
	background: transparent;
}
.hero .btn-outline:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}

/* Trust badges — clean 2x2 grid so they always align */
.hero__badges {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .9rem 1.6rem;
	color: rgba(255,255,255,.92);
	font-size: .95rem;
	max-width: 560px;
}
.hero__badges li {
	display: flex; align-items: center; gap: .55rem;
	font-weight: 500;
	padding: .15rem 0;
	border-left: 2px solid rgba(30,167,230,.55);
	padding-left: .8rem;
}
.hero__badges i {
	color: var(--brand);
	font-size: 1.05rem;
	flex-shrink: 0;
}
@media (max-width: 480px) {
	.hero__badges { grid-template-columns: 1fr; }
}

/* Hero quote card — wraps the full quote form */
.hero__quote {
	background: #fff; color: var(--ink); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg); padding: 1.6rem 1.6rem 1.4rem;
	width: 100%; max-width: 520px; justify-self: end;
	border: 1px solid rgba(255,255,255,.1);
}
.hero__quote-head {
	margin: -1.6rem -1.6rem 1.1rem;
	padding: 1.1rem 1.6rem;
	background: linear-gradient(135deg, #0b2545 0%, #103766 100%);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	color: #fff;
}
.hero__quote-head h3 { color: #fff; margin: 0 0 .2rem; font-size: 1.4rem; font-weight: 700; letter-spacing: .2px; }
.hero__quote-head .muted { margin: 0; font-size: .92rem; color: rgba(255,255,255,.85); }
@media (max-width: 480px) {
	.hero__quote-head { margin: -1.25rem -1.25rem 1rem; padding: .95rem 1.25rem; border-radius: 14px 14px 0 0; }
}

/* When the quote form is used inside the hero, strip its own card styling
   so it doesn't double up the white card / shadow / padding. */
.hero__quote .quote-form,
.quote-form--hero {
	background: transparent;
	box-shadow: none;
	border: 0;
	padding: 0;
}
.hero__quote .quote-form .grid,
.quote-form--hero .grid { gap: .65rem .8rem; }
.hero__quote .field,
.quote-form--hero .field { margin-bottom: 0; }
.hero__quote .field span,
.quote-form--hero .field span { font-size: .82rem; }
.hero__quote .field input,
.hero__quote .field select,
.hero__quote .field textarea,
.quote-form--hero .field input,
.quote-form--hero .field select,
.quote-form--hero .field textarea {
	padding: .6rem .75rem; font-size: .95rem; border-radius: 8px;
}
.hero__quote .field-full,
.quote-form--hero .field-full { margin-top: .25rem; }
.hero__quote .field textarea,
.quote-form--hero .field textarea { min-height: 80px; resize: vertical; }
.hero__quote .btn-lg,
.quote-form--hero .btn-lg { margin-top: .9rem; width: 100%; justify-content: center; }
.hero__quote .form-status,
.quote-form--hero .form-status { margin-top: .5rem; }

/* Slightly tighter hero padding so the taller card breathes */
@media (min-width: 901px) {
	.hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
}

@media (max-width: 900px) {
	.hero__inner { grid-template-columns: 1fr; gap: 2rem; }
	.hero__quote { justify-self: stretch; max-width: 100%; }
}
@media (max-width: 480px) {
	.hero__quote { padding: 1.25rem; border-radius: 14px; }
	.hero__quote-head h3 { font-size: 1.2rem; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.trustbar__inner {
	display: flex; gap: 1rem;
	justify-content: space-between;
	flex-wrap: nowrap; /* all 5 on one row */
	align-items: center;
}
.trustbar__item {
	display: flex; align-items: center; gap: .45rem;
	color: var(--ink); font-weight: 500;
	font-family: var(--font-display); font-size: .82rem;
	white-space: nowrap;
}
.trustbar__item i { color: var(--brand); font-size: 1.2rem; flex-shrink: 0; }
@media (max-width: 900px) {
	.trustbar__inner { flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: center; }
	.trustbar__item { font-size: .8rem; }
}

/* ---------- About section ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__image { border-radius: var(--radius-lg); background-size: cover; background-position: center; box-shadow: var(--shadow-lg); }
.about__image--main { aspect-ratio: 3/2; }
.about__image--sub { position: absolute; right: -1.5rem; bottom: -1.5rem; width: 55%; aspect-ratio: 4/3; border: 6px solid #fff; }
.about__badge {
	position: absolute;
	bottom: -1.2rem; right: -1.2rem;
	background: var(--brand); color: #fff;
	padding: 1rem 1.3rem;
	border-radius: 16px;
	box-shadow: 0 18px 40px -12px rgba(11,37,69,.4);
	display: flex; flex-direction: column; gap: .15rem;
	max-width: 220px;
	border: 4px solid #fff;
	z-index: 2;
}
.about__badge strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about__badge span { font-size: .82rem; line-height: 1.3; opacity: .95; }
@media (max-width: 600px) {
	.about__badge { right: .8rem; bottom: .8rem; max-width: 200px; }
}
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .65rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; color: var(--ink); }
.check-list i { color: var(--success); font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.about__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
@media (max-width: 900px) {
	.about__grid { grid-template-columns: 1fr; }
	.about__image--sub { display: none; }
}

/* ---------- About Story (split rows on About page) ---------- */
.about-story-section { background: #fff; }
.about-story { display: flex; flex-direction: column; gap: 5rem; }

.about-story__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
/* Reverse: media moves to column 1 (left), text stays column 2 (right) */
.about-story__row--reverse .about-story__media { order: -1; }

.about-story__media {
	position: relative; border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-lg);
	aspect-ratio: 4/3;
}
.about-story__media img {
	width: 100%; height: 100%; object-fit: cover;
	display: block; transition: transform .5s ease;
}
.about-story__row:hover .about-story__media img { transform: scale(1.03); }

.about-story__badge {
	position: absolute; bottom: 1.25rem; right: 1.25rem;
	background: var(--brand); color: #fff;
	border-radius: 12px; padding: .75rem 1.1rem;
	text-align: center; box-shadow: var(--shadow);
	min-width: 120px;
}
.about-story__badge--alt { background: var(--navy); right: auto; left: 1.25rem; }
.about-story__badge strong {
	display: flex; align-items: center; justify-content: center;
	gap: .25rem; font-size: 1.5rem; font-family: var(--font-display);
}
.about-story__badge strong .bi { font-size: 1rem; color: #fde68a; }
.about-story__badge span {
	display: block; font-size: .72rem; text-transform: uppercase;
	letter-spacing: .06em; opacity: .9; margin-top: .15rem;
}

.about-story__text .eyebrow { margin-bottom: .75rem; }
.about-story__text h2 { margin-bottom: 1rem; }
.about-story__text p { margin-bottom: 1rem; color: var(--text); }
.about-story__text .check-list { margin: 1.2rem 0 1.5rem; }
.about-story__text .btn { margin-top: .5rem; }

@media (max-width: 860px) {
	.about-story__row { grid-template-columns: 1fr; }
	/* On mobile always show image on top, text below */
	.about-story__row--reverse .about-story__media { order: 0; }
	.about-story { gap: 3rem; }
}

/* ---------- Background-textured sections ----------
   Reusable: any <section class="section section--bg section--bg-services">
   gets a visible photo background with a soft white wash so cards stay crisp.
*/
.section--bg,
.services-section, .blog-section, .process-section,
.testimonials-section, .awards-section, .faq-page-section, .contact-page {
	position: relative; isolation: isolate;
	background-color: var(--bg-2);
}
.section--bg::before,
.services-section::before, .blog-section::before, .process-section::before,
.testimonials-section::before, .awards-section::before,
.faq-page-section::before, .contact-page::before {
	content: ''; position: absolute; inset: 0; z-index: -2;
	background-size: cover; background-position: center;
	background-repeat: no-repeat; opacity: .55;
}
.section--bg::after,
.services-section::after, .blog-section::after, .process-section::after,
.testimonials-section::after, .awards-section::after,
.faq-page-section::after, .contact-page::after {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(245,248,251,.88) 50%, rgba(255,255,255,.82) 100%);
}

/* Per-section image */
.services-section::before  { background-image: url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?auto=format&fit=crop&w=1920&q=80'); }
.blog-section::before      { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80'); }
.process-section::before   { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80'); opacity: .45; }
.testimonials-section::before { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1920&q=80'); opacity: .4; }
.awards-section::before    { background-image: url('https://images.unsplash.com/photo-1567427017947-545c5f8d16ad?auto=format&fit=crop&w=1920&q=80'); opacity: .4; }
.faq-page-section::before  { background-image: url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=1920&q=80'); opacity: .4; }
.contact-page::before      { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80'); opacity: .4; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.services-grid--page { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .services-grid, .services-grid--page { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid, .services-grid--page { grid-template-columns: 1fr; } }
.service-card {
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	display: flex; flex-direction: column; overflow: hidden;
	text-decoration: none; color: inherit;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(30,167,230,.3); color: inherit; }
.service-card h3 { margin: 0 0 .35rem; font-size: 1.2rem; color: var(--ink); }
.service-card h3 a { color: inherit; }
.service-card p { color: var(--muted); margin: 0 0 1rem; flex-grow: 1; line-height: 1.55; }
.service-card .link-arrow { color: var(--brand); margin-top: auto; font-weight: 600; }
.service-card:hover .link-arrow i { transform: translateX(4px); }

/* Photo-led service card */
.service-card--photo .service-card__media {
	position: relative; aspect-ratio: 4 / 3;
	background-size: cover; background-position: center;
	overflow: hidden;
}
.service-card--photo .service-card__media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,37,69,.05) 0%, rgba(11,37,69,.55) 100%);
	transition: background .3s ease;
}
.service-card--photo:hover .service-card__media::after {
	background: linear-gradient(180deg, rgba(11,37,69,.1) 0%, rgba(11,37,69,.7) 100%);
}
.service-card--photo .service-card__media {
	transition: transform .5s ease;
}
.service-card--photo:hover .service-card__media {
	/* subtle zoom on hover via inner pseudo? Use bg-size instead. */
}
.service-card--photo .service-card__chip {
	position: absolute; left: 1rem; bottom: 1rem; z-index: 1;
	background: rgba(255,255,255,.92); color: var(--ink);
	font-family: var(--font-display); font-weight: 600; font-size: .85rem;
	padding: .35rem .75rem; border-radius: 999px;
	backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	box-shadow: 0 4px 14px -4px rgba(0,0,0,.25);
}
.service-card--photo .service-card__body {
	padding: 1.4rem 1.5rem 1.5rem;
	display: flex; flex-direction: column; gap: .35rem; flex-grow: 1;
}

/* Legacy icon support — if some card still uses the icon variant. */
.service-card__icon {
	width: 64px; height: 64px; border-radius: 16px;
	background: linear-gradient(135deg, rgba(30,167,230,.15), rgba(30,167,230,.05));
	display: grid; place-items: center; color: var(--brand); font-size: 1.8rem;
	margin: 1.5rem 1.5rem 0;
}
.service-card--featured { padding: 0; }
.service-card--featured > h3,
.service-card--featured > p,
.service-card--featured > .link-arrow { padding: 0 1.5rem; }
.service-card--featured > .link-arrow { padding-bottom: 1.5rem; }
.service-card__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.why__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.why__item {
	background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius-lg); padding: 1.4rem;
	display: flex; gap: 1rem; align-items: flex-start;
	transition: transform .2s, background .2s;
}
.why__item:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.why__item i { color: var(--brand); font-size: 1.8rem; flex-shrink: 0; }
.why__item h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.why__item p  { color: rgba(255,255,255,.7); font-size: .95rem; margin: 0; }
@media (max-width: 900px) {
	.why__grid { grid-template-columns: 1fr; }
	.why__features { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-section { background: var(--bg-2); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; padding: 0; counter-reset: step; }
.process__step {
	background: #fff; border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
	box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--border);
}
.process__num {
	font-family: var(--font-display); font-weight: 800;
	font-size: 2.4rem; color: var(--brand); display: block; line-height: 1; margin-bottom: .8rem;
	background: linear-gradient(135deg, var(--brand), var(--accent));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.process__step p { color: var(--muted); font-size: .94rem; margin: 0; }
@media (max-width: 1024px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats-section { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 3rem 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats__item strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin-bottom: .35rem; }
.stats__item span { opacity: .9; font-size: .95rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--bg-2); }

/* Horizontal scroll carousel — arrows work on all screen sizes */
.testimonials {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 6px; /* prevent card shadow clipping */
}
.testimonials::-webkit-scrollbar { display: none; }

.testimonial {
	flex: 0 0 calc(33.333% - 1rem);
	scroll-snap-align: start;
	background: #fff; border-radius: var(--radius-lg); padding: 1.8rem;
	box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin: 0;
	display: flex; flex-direction: column; gap: 1rem;
}
.testimonial blockquote { margin: 0; font-size: 1.02rem; color: var(--ink); line-height: 1.6; flex: 1; }
.testimonial figcaption { margin-top: auto; }
.testimonial figcaption strong { display: block; font-family: var(--font-display); color: var(--ink); }
.testimonial figcaption span { color: var(--muted); font-size: .9rem; }

.slider-controls {
	display: flex; gap: .6rem; justify-content: center; margin-top: 2rem;
}
.slider-controls button {
	width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brand);
	background: #fff; cursor: pointer; color: var(--brand);
	font-size: 1rem; display: grid; place-items: center;
	transition: background .2s, color .2s;
}
.slider-controls button:hover { background: var(--brand); color: #fff; }

/* Tablet: 2 cards visible */
@media (max-width: 1024px) {
	.testimonial { flex: 0 0 calc(50% - .75rem); }
}
/* Mobile: 1 card full width */
@media (max-width: 640px) {
	.testimonial { flex: 0 0 100%; padding: 1.4rem; }
}

/* ---------- Testimonial Google badge ---------- */
.testimonial__top {
	display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.testimonial__rating { color: #f5b301; font-size: 1.05rem; letter-spacing: 2px; flex-shrink: 0; }
.testimonial__google-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px; border-radius: 50%;
	background: #fff; border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px rgba(0,0,0,.12);
	flex-shrink: 0;
}
.testimonial__google-badge i {
	font-size: 1rem; color: #4285F4;
}

/* ---------- Truck split section ---------- */
.truck-split__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.truck-split__media { position: relative; }
.truck-split__media img {
	width: 100%; border-radius: var(--radius-lg);
	object-fit: cover; aspect-ratio: 4/3;
	box-shadow: var(--shadow-lg);
}
.truck-split__badge {
	position: absolute; bottom: -1.2rem; right: -1rem;
	background: var(--brand); color: #fff;
	padding: .75rem 1.25rem; border-radius: 40px;
	display: flex; align-items: center; gap: .5rem;
	font-family: var(--font-display); font-weight: 700; font-size: .9rem;
	box-shadow: 0 4px 20px rgba(0,102,204,.35);
}
.truck-split__badge i { font-size: 1.1rem; }
.truck-split__text { display: flex; flex-direction: column; gap: 1.25rem; }
.truck-split__text h2 { margin: 0; }
.truck-split__text .lead { margin: 0; color: var(--ink-light); }
.truck-split__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .25rem; }

@media (max-width: 860px) {
	.truck-split__grid { grid-template-columns: 1fr; gap: 3rem; }
	.truck-split__badge { right: 1rem; }
}

/* ---------- Values section ---------- */
.values-section { background: var(--bg-2); }
.section__divider {
	width: 60px; height: 3px; background: var(--brand);
	margin: 1.25rem auto 0; border-radius: 2px;
}
.values-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem;
}
.value-card {
	background: #fff; border-radius: var(--radius-lg);
	padding: 2.5rem 2rem; border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	transition: box-shadow .25s, transform .25s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card__icon {
	width: 56px; height: 56px; border-radius: 50%;
	background: rgba(0,102,204,.08);
	display: grid; place-items: center; margin-bottom: 1.25rem;
}
.value-card__icon i { font-size: 1.6rem; color: var(--brand); }
.value-card h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.value-card__divider {
	width: 40px; height: 2px; background: var(--brand);
	border-radius: 2px; margin-bottom: 1rem;
}
.value-card p { margin: 0; color: var(--ink-light); line-height: 1.7; }

@media (max-width: 860px) {
	.values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (min-width: 540px) and (max-width: 860px) {
	.values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery section ---------- */
.gallery-section { background: #fff; }
.section__sub { max-width: 640px; margin: .75rem auto 0; color: var(--ink-light); line-height: 1.7; }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}
.gallery-item {
	display: block; text-decoration: none; color: var(--ink);
}
.gallery-item__thumb {
	position: relative; overflow: hidden;
	border-radius: var(--radius); aspect-ratio: 4/3;
}
.gallery-item__thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .4s ease;
	display: block;
}
.gallery-item:hover .gallery-item__thumb img { transform: scale(1.05); }
.gallery-item__overlay {
	position: absolute; inset: 0;
	background: rgba(11,37,69,.5);
	display: grid; place-items: center;
	opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay i { font-size: 2rem; color: #fff; }
.gallery-item__caption {
	margin: .55rem 0 0; font-size: .88rem;
	color: var(--ink-light); line-height: 1.4;
}

@media (max-width: 860px) {
	.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
	.gallery-grid { grid-template-columns: 1fr; }
}

/* Gallery CTA strip */
.gallery-cta { margin-top: 4rem; }
.gallery-cta__inner {
	background: linear-gradient(135deg, var(--navy) 0%, var(--brand-dark) 100%);
	border-radius: var(--radius-lg); padding: 2.5rem 3rem;
	display: flex; align-items: center; justify-content: space-between; gap: 2rem;
	flex-wrap: wrap; color: #fff;
}
.gallery-cta__inner h3 { margin: 0; color: #fff; font-size: 1.5rem; }
.gallery-cta__inner p  { margin: .35rem 0 0; color: rgba(255,255,255,.75); }
.btn-lg { font-size: 1.05rem; padding: .85rem 2rem; }
@media (max-width: 640px) {
	.gallery-cta__inner { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}

/* ---------- Quote section / Form ---------- */
.quote-section { background: linear-gradient(180deg, #fff, var(--bg-2)); }
.quote-section__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.quote-section__contact { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; font-weight: 600; }
.quote-section__contact a { color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.quote-section__contact i { color: var(--brand); }
@media (max-width: 900px) { .quote-section__grid { grid-template-columns: 1fr; } }

.quote-form, .contact-form {
	background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field span { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
	width: 100%; padding: .75rem .9rem; border: 1px solid #999; border-radius: 10px;
	font-family: inherit; font-size: 1rem; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #666; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(30,167,230,.15);
}
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
.field-full { grid-column: 1 / -1; }
.form-status { margin-top: .8rem; min-height: 1.2rem; font-size: .9rem; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: #dc2626; }

/* ---------- Footer CTA ---------- */
.footer-cta {
	background: linear-gradient(135deg, var(--brand) 0%, #2dd4bf 100%);
	color: #fff; padding: 3rem 0;
}
.footer-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-cta h2 { color: #fff; margin-bottom: .3rem; }
.footer-cta p { color: rgba(255,255,255,.9); margin: 0; }
.footer-cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-cta .btn-ghost { background: rgba(255,255,255,.18); color: #fff; }
.footer-cta .btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
.footer-cta .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.footer-cta .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #fff; }
.site-footer__about p { margin-top: 1rem; }
.site-footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.site-footer__social a {
	width: 38px; height: 38px; border-radius: 50%;
	display: grid; place-items: center; background: rgba(255,255,255,.08);
}
.site-footer__social a:hover { background: var(--brand); color: #fff; }
.site-footer__social i { font-size: 1.05rem; color: rgba(255,255,255,.85); }
.site-footer__social a:hover i { color: #fff; }

/* Footer trust badges (CAM + BBB) */
.site-footer__badges {
	display: flex; align-items: center; gap: 1rem;
	margin-top: 1.5rem; flex-wrap: wrap;
}
.site-footer__badge {
	display: inline-block;
	background: #fff;
	border-radius: 6px;
	padding: .55rem .75rem;
	transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.site-footer__badge:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.22); }
.site-footer__badge img {
	display: block;
	height: auto;
	max-width: 100%;
}
.site-footer__badge--cam img { height: 50px; width: auto; }
.site-footer__badge--bbb img { height: 50px; width: auto; }

@media (max-width: 600px) {
	.site-footer__badges { gap: .75rem; }
	.site-footer__badge--cam img,
	.site-footer__badge--bbb img { height: 42px; }
}

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; font-size: .9rem; }
.site-footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.site-footer__bottom p { margin: 0; }
.contact-list { list-style: none; padding: 0; display: grid; gap: .55rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .5rem; }
.contact-list i { color: var(--brand); margin-top: 4px; }
.contact-list--lg li { gap: 1rem; align-items: center; }
.contact-list--lg i { font-size: 1.5rem; background: var(--bg-2); width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); }
.contact-list--lg strong { display: block; color: var(--ink); font-family: var(--font-display); }
.contact-list--lg a, .contact-list--lg span { color: var(--muted); }

@media (max-width: 900px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero / Breadcrumbs ---------- */
.page-hero {
	color: #fff;
	padding: clamp(5rem, 10vw, 8rem) 0;
	position: relative; overflow: hidden; isolation: isolate;
	text-align: center;
	background-color: var(--navy);
}
.page-hero::before {
	content: ''; position: absolute; inset: 0; z-index: -2;
	background-image: url('../images/hero-bg.jpg');
	background-size: cover; background-position: center;
	opacity: .65;
}
.page-hero::after {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(135deg, rgba(11,37,69,.55) 0%, rgba(17,50,92,.45) 50%, rgba(11,37,69,.6) 100%),
		radial-gradient(circle at 85% 80%, rgba(30,167,230,.18) 0%, transparent 50%);
	pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1, .page-hero h2 {
	color: #fff !important; margin: 0 0 .6rem;
	text-shadow: 0 2px 24px rgba(0,0,0,.35);
	font-size: clamp(2.25rem, 5vw, 3.25rem);
}
.page-hero p {
	color: rgba(255,255,255,.92) !important;
	font-size: 1.1rem; max-width: 760px;
	margin: 0 auto;
	text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.page-hero .eyebrow {
	color: #fff !important;
	background: rgba(255,255,255,.15);
	display: inline-flex; align-items: center; gap: .4rem;
	padding: .35rem .95rem; border-radius: 999px;
	font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
	font-weight: 700; margin-bottom: 1rem;
	backdrop-filter: blur(4px);
}
.page-hero .eyebrow i { color: #fff; }
.page-hero__title {
	color: #fff; margin-bottom: .6rem;
	text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.page-hero__subtitle {
	color: rgba(255,255,255,.92); font-size: 1.1rem;
	max-width: 760px; margin: 0 auto 1.2rem;
	text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.breadcrumbs {
	color: rgba(255,255,255,.85); font-size: .92rem;
	margin-top: 1rem; display: inline-flex; flex-wrap: wrap;
	justify-content: center; align-items: center; gap: .15rem;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	padding: .45rem 1rem; border-radius: 999px;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.breadcrumbs a { color: #fff; font-weight: 500; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs i { font-size: .75rem; margin: 0 .35rem; opacity: .55; }

/* ---------- Content area / Posts ---------- */
.content-area { padding: clamp(3rem, 6vw, 5rem) 0; }
.with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media (max-width: 1024px) { .with-sidebar { grid-template-columns: 1fr; } }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .post-grid, .post-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid, .post-grid--3 { grid-template-columns: 1fr; } }
.post-card {
	background: #fff; border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
	display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__thumb--placeholder { display: grid; place-items: center; height: 100%; color: var(--muted); font-size: 3rem; }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex-grow: 1; }
.post-card__meta { display: flex; gap: 1rem; color: var(--muted); font-size: .85rem; flex-wrap: wrap; }
.post-card__title { font-size: 1.18rem; margin: 0; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { color: var(--muted); margin: 0; flex-grow: 1; }
.post-card__more { margin-top: auto; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- Single post layout ---------- */
.single-post-area { padding: clamp(3rem, 6vw, 5rem) 0; }
.single-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 3.5rem;
	align-items: start;
}
@media (max-width: 1024px) {
	.single-post__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.single-post {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
	border: 1px solid var(--border);
	overflow: hidden;
}
.single-post__thumb img {
	width: 100%; aspect-ratio: 16/9; object-fit: cover;
	border-radius: 0;
	margin: 0;
}
.single-post__header {
	padding: 1.6rem 2rem;
	border-bottom: 1px solid var(--border);
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap; gap: 1.2rem;
}
.single-post__meta {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
	color: var(--muted); font-size: .92rem;
}
.single-post__meta li { display: inline-flex; align-items: center; gap: .4rem; }
.single-post__meta i { color: var(--brand); }
.single-post__meta a { color: inherit; }
.single-post__meta a:hover { color: var(--brand); }

.single-post__share { display: flex; align-items: center; gap: .35rem; }
.single-post__share-label {
	color: var(--muted); font-size: .85rem;
	margin-right: .35rem; font-weight: 500;
}
.single-post__share a {
	display: inline-grid; place-items: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--bg-2); color: var(--ink);
	transition: background .2s, color .2s, transform .2s;
	font-size: .95rem;
}
.single-post__share a:hover {
	background: var(--brand); color: #fff;
	transform: translateY(-2px);
}

.single-post__content {
	padding: 2.2rem 2rem;
	font-size: 1.07rem;
	line-height: 1.8;
	color: #1f2937;
}
.single-post__content > p:first-of-type::first-letter {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 3.4rem;
	float: left;
	margin: .15rem .6rem -.15rem 0;
	line-height: .85;
	color: var(--brand);
}
.single-post__content h2 {
	font-size: 1.7rem;
	margin-top: 2.2em;
	margin-bottom: .6em;
	color: var(--ink);
	scroll-margin-top: 100px;
}
.single-post__content h3 {
	font-size: 1.3rem;
	margin-top: 1.6em;
	margin-bottom: .4em;
	color: var(--ink);
}
.single-post__content ul, .single-post__content ol {
	padding-left: 1.4rem; margin-bottom: 1.3em;
}
.single-post__content li { margin-bottom: .35em; }
.single-post__content blockquote {
	margin: 2rem 0;
	padding: 1.2rem 1.6rem;
	background: linear-gradient(135deg, rgba(30,167,230,.08), rgba(30,167,230,.02));
	border-left: 5px solid var(--brand);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--ink);
}
.single-post__content img { border-radius: 12px; margin: 1.6em 0; }
.single-post__content a {
	color: var(--brand); text-decoration: underline;
	text-decoration-thickness: 2px; text-underline-offset: 3px;
}
/* Inline callout box for in-article CTAs / pro tips */
.single-post__content .pro-tip {
	background: var(--bg-2);
	border-radius: 14px;
	padding: 1.2rem 1.4rem;
	margin: 1.8rem 0;
	display: flex; gap: 1rem;
	border: 1px solid var(--border);
}
.single-post__content .pro-tip::before {
	content: '\F4DA'; /* bi-lightbulb-fill */
	font-family: 'bootstrap-icons';
	color: #f59e0b; font-size: 1.6rem;
	line-height: 1; flex-shrink: 0;
}

.single-post__tags {
	padding: 0 2rem 1.2rem;
	color: var(--muted); font-size: .9rem;
}
.single-post__tags i { color: var(--brand); margin-right: .4rem; }
.single-post__tags a {
	display: inline-block;
	background: var(--bg-2);
	color: var(--ink);
	padding: .3rem .7rem;
	border-radius: 999px;
	margin: .15rem;
	font-size: .82rem;
	transition: background .2s, color .2s;
}
.single-post__tags a:hover { background: var(--brand); color: #fff; }

/* Author bio card */
.author-card {
	margin: 1rem 2rem 1.5rem;
	padding: 1.6rem;
	background: linear-gradient(135deg, var(--bg-2), #fff);
	border: 1px solid var(--border);
	border-radius: 16px;
	display: flex; gap: 1.2rem; align-items: flex-start;
}
.author-card__avatar {
	width: 72px; height: 72px; border-radius: 50%;
	flex-shrink: 0; border: 3px solid #fff;
	box-shadow: var(--shadow-sm);
}
.author-card__label {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .72rem;
	color: var(--brand);
	font-weight: 600;
}
.author-card h4 {
	font-size: 1.15rem;
	margin: .15rem 0 .35rem;
	color: var(--ink);
}
.author-card p {
	margin: 0;
	color: var(--muted);
	font-size: .94rem;
	line-height: 1.55;
}

/* Post nav (prev / next) */
.single-post .post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0 2rem 1.5rem;
}
.single-post .post-navigation a {
	display: flex; flex-direction: column; gap: .35rem;
	padding: 1.1rem 1.3rem;
	background: var(--bg-2);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: background .2s, transform .2s;
}
.single-post .post-navigation a:hover {
	background: var(--brand); color: #fff;
	transform: translateY(-2px);
}
.single-post .post-navigation a:hover .meta-nav,
.single-post .post-navigation a:hover .post-title { color: #fff; }
.single-post .post-navigation .meta-nav {
	font-family: var(--font-display); font-weight: 600;
	font-size: .82rem; color: var(--brand);
	text-transform: uppercase; letter-spacing: .08em;
}
.single-post .post-navigation .post-title {
	font-family: var(--font-display); font-weight: 600;
	color: var(--ink); font-size: 1rem; line-height: 1.35;
}
.single-post .post-navigation .nav-next { text-align: right; }
@media (max-width: 600px) {
	.single-post .post-navigation { grid-template-columns: 1fr; }
	.single-post .post-navigation .nav-next { text-align: left; }
}

/* Related posts */
.related-posts {
	margin: 2rem 2rem 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}
.related-posts__title {
	font-size: 1.25rem;
	margin-bottom: 1.4rem;
	color: var(--ink);
}
.related-posts__title i { color: var(--brand); margin-right: .4rem; }

/* Comments inside single */
.single-post .comments-area {
	margin: 0 2rem 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

/* Blog single sidebar (sticky only on the CTA card, not the whole column) */
.single-post__sidebar { display: grid; gap: 1.5rem; align-self: start; }
.single-post__sidebar .widget {
	background: #fff; border: 1px solid var(--border);
	border-radius: 16px; padding: 1.5rem;
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.single-post__sidebar .widget-title {
	font-size: 1.05rem;
	margin-bottom: 1rem;
	padding-bottom: .8rem;
	border-bottom: 1px solid var(--border);
	display: flex; align-items: center; gap: .5rem;
}
.single-post__sidebar .widget-title::before {
	content: ''; width: 4px; height: 22px; background: var(--brand);
	border-radius: 2px;
}
.single-post__sidebar .widget ul { gap: .65rem; }
.single-post__sidebar .widget ul li { padding: .35rem 0; border-bottom: 1px dashed var(--border); }
.single-post__sidebar .widget ul li:last-child { border-bottom: 0; }
.single-post__sidebar .widget input[type="search"],
.single-post__sidebar .widget input[type="text"] {
	width: 100%; padding: .6rem .8rem;
	border: 1px solid var(--border); border-radius: 8px;
	font-family: inherit; font-size: .95rem;
}
.sticky-cta {
	background: linear-gradient(135deg, var(--navy), var(--navy-2));
	color: #fff;
	padding: 1.6rem;
	border-radius: 16px;
	text-align: left;
	box-shadow: var(--shadow);
	position: sticky;
	top: 110px;
}
.sticky-cta h3 { color: #fff; margin: 0 0 .4rem; font-size: 1.15rem; }
.sticky-cta p { color: rgba(255,255,255,.85); font-size: .92rem; margin: 0 0 1rem; }
.sticky-cta .btn-ghost { background: rgba(255,255,255,.18); color: #fff; }
.sticky-cta .btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
@media (max-width: 1024px) {
	.sticky-cta { position: static; }
}

/* Global scroll safety net — prevent any element accidentally trapping scroll. */
html, body { overflow-x: hidden; }
body { min-height: 100vh; }

/* Responsive padding inside .single-post on small screens */
@media (max-width: 600px) {
	.single-post__header { padding: 1.2rem; }
	.single-post__content { padding: 1.6rem 1.2rem; }
	.single-post__tags,
	.author-card,
	.single-post .post-navigation,
	.related-posts,
	.single-post .comments-area { margin-left: 1.2rem; margin-right: 1.2rem; }
	.single-post__content > p:first-of-type::first-letter { font-size: 2.6rem; }
}

/* Prose */
.prose { max-width: 820px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.2em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose blockquote {
	border-left: 4px solid var(--brand); padding: .25rem 1.2rem; color: var(--ink);
	background: var(--bg-2); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; margin: 1.5em 0;
}
.prose code { background: var(--bg-2); padding: .15rem .35rem; border-radius: 4px; font-size: .9em; }
.prose pre { background: var(--ink); color: #e2e8f0; padding: 1rem; border-radius: var(--radius); overflow: auto; }

/* Sidebar */
.sidebar .widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1.5rem; }
.sidebar .widget-title { font-size: 1.05rem; margin-bottom: 1rem; color: var(--ink); }
.sidebar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.sidebar a { color: var(--text); }
.sidebar a:hover { color: var(--brand); }

/* Pagination */
.mmgta-pagination { display: flex; justify-content: center; gap: .35rem; margin: 2rem 0; flex-wrap: wrap; }
.mmgta-pagination .page-numbers {
	min-width: 42px; height: 42px; padding: 0 .8rem; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; background: #fff; color: var(--ink); border: 1px solid var(--border); font-weight: 600;
}
.mmgta-pagination .page-numbers.current,
.mmgta-pagination .page-numbers:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* 404 */
.error-404 { text-align: center; padding: 4rem 0; max-width: 600px; margin: 0 auto; }
.error-404 h2 { font-size: 6rem; color: var(--brand); margin-bottom: 1rem; line-height: 1; }

/* FAQ Accordion */
.faq-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; } }
.accordion { display: grid; gap: .75rem; margin-top: 1rem; }
.accordion__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion__item summary {
	cursor: pointer; padding: 1.1rem 1.3rem;
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	font-family: var(--font-display); font-weight: 600; color: var(--ink); list-style: none;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary i { color: var(--brand); transition: transform .2s; }
.accordion__item[open] summary i { transform: rotate(45deg); }
.accordion__body { padding: 0 1.3rem 1.2rem; color: var(--text); }

/* Cards (CTA) */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.card--cta { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; border: 0; }
.card--cta h3 { color: #fff; }
.card--cta p { color: rgba(255,255,255,.8); }
.card--cta .btn-ghost { background: rgba(255,255,255,.15); color: #fff; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.service-list a {
	display: flex; justify-content: space-between; align-items: center;
	padding: .55rem .75rem; border-radius: 8px; background: var(--bg-2); color: var(--ink);
}
.service-list a:hover { background: var(--brand); color: #fff; }

/* Service single layout */
.service-single__grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.service-single__hero img { border-radius: var(--radius-lg); margin-bottom: 2rem; }
.service-single__aside { display: grid; gap: 1.5rem; position: sticky; top: 110px; }
@media (max-width: 1024px) { .service-single__grid { grid-template-columns: 1fr; } .service-single__aside { position: static; } }

/* Contact page grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Back to top */
.back-to-top {
	position: fixed; right: 1.5rem; bottom: 1.5rem;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--brand); color: #fff; display: grid; place-items: center;
	box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
	transition: opacity .2s, transform .2s; transform: translateY(10px); z-index: 50;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-dark); color: #fff; }

/* Demo import notice */
.mmgta-demo-notice { background: #fff; border-left: 5px solid var(--brand); padding: 1rem 1.2rem; }
.mmgta-demo-notice .button-primary { background: var(--brand); border-color: var(--brand); }

/* ---------- Awards & Accreditations ---------- */
.awards-section { background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%); }

/* Award / accreditation logo strip */
.award-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0 auto 3rem;
	max-width: 1160px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 2px 12px rgba(15,23,42,.06);
	overflow: hidden;
}

.award-logo {
	flex: 0 0 auto;
	width: 140px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 16px;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	transition: background .2s ease, transform .2s ease;
	background: #fff;
}
.award-logo:hover {
	background: var(--bg-2);
	transform: scale(1.04);
	z-index: 1;
	position: relative;
}
.award-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	filter: grayscale(30%);
	opacity: .88;
	transition: filter .3s ease, opacity .3s ease;
}
.award-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

@media (max-width: 900px) {
	.award-logo { width: 120px; height: 88px; padding: 12px 14px; }
}
@media (max-width: 600px) {
	.award-logo { width: calc(33.333% - 0px); height: 80px; padding: 10px 12px; }
}
@media (max-width: 400px) {
	.award-logo { width: 50%; height: 72px; padding: 8px 10px; }
}

/* Placeholder badge for missing logo files */
.award-logo__placeholder {
	width: 100%; height: 100%;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: .3rem;
	text-align: center;
}
.award-logo__placeholder i {
	font-size: 1.3rem;
	color: var(--brand);
	opacity: .5;
}
.award-logo__placeholder span {
	font-family: var(--font-display);
	font-size: .6rem;
	font-weight: 600;
	color: var(--muted);
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.awards-tabs {
	background: #fff; border: 1px solid var(--border);
	border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
	overflow: hidden; margin: 0 auto; max-width: 980px;
}
.awards-tabs__nav {
	display: flex; gap: .25rem; overflow-x: auto;
	background: var(--bg-2); border-bottom: 1px solid var(--border);
	padding: .5rem; scrollbar-width: thin;
}
.awards-tab {
	flex-shrink: 0; padding: .65rem 1.1rem; border: 0; cursor: pointer;
	background: transparent; color: var(--muted); border-radius: 10px;
	font-family: var(--font-display); font-weight: 600; font-size: .95rem;
	transition: background .2s, color .2s;
}
.awards-tab:hover { color: var(--ink); }
.awards-tab.is-active {
	background: var(--brand); color: #fff;
	box-shadow: 0 6px 18px -8px rgba(30,167,230,.65);
}
.awards-tabs__panels { padding: 1.8rem 2rem 2rem; }
.awards-panel { display: none; animation: mmgta-fade .35s ease both; }
.awards-panel.is-active { display: block; }
.awards-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.awards-list li {
	display: flex; align-items: flex-start; gap: .7rem;
	padding: .65rem .85rem; background: var(--bg-2); border-radius: 10px;
	color: var(--ink); line-height: 1.5;
}
.awards-list i {
	color: #f5b301; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}
.awards-footnote {
	margin: 1.5rem auto 0; max-width: 820px; text-align: center;
	color: var(--muted); font-size: .9rem;
}
.awards-footnote i { color: var(--brand); margin-right: .25rem; }

@media (max-width: 600px) {
	.awards-tabs__panels { padding: 1.2rem; }
	.accreditations li { width: 100%; justify-content: center; }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
	[data-aos], .service-card, .post-card, .testimonial, .process__step {
		animation: mmgta-fade .6s ease both;
	}
}
@keyframes mmgta-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
