/*
 * MakDev Consulting Engineers — Pages & Site-wide Footer Styles
 * Space Grotesk headings, Inter body, Navy & Gold Engineering Palette.
 */

/* ==========================================================================
   0. FULL-WIDTH RESET (Forces edge-to-edge layout on Astra across all pages)
   ========================================================================== */
body.page #content,
body.page .site-content,
body.page .site-content > .ast-container,
body.page #primary,
body.page #primary.mk-page-template,
body.page .site-main,
body.page-template #content,
body.page-template .site-content,
body.page-template .site-content > .ast-container,
body.page-template #primary,
body.page-template #primary.mk-page-template,
body.page-template .site-main,
body.makdev-custom-layout-active #content,
body.makdev-custom-layout-active .site-content,
body.makdev-custom-layout-active .site-content > .ast-container,
body.makdev-custom-layout-active #primary,
body.makdev-custom-layout-active .site-main {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	border: none !important;
	float: none !important;
	display: block !important;
}

.mk-page-template {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Base Shared Variables on Pages */
.mk-page-template,
.mk-site-footer {
	--mk-navy-dark: #071526;
	--mk-navy: #0b1a2c;
	--mk-navy-light: #132840;
	--mk-navy-subtle: #1c3554;
	--mk-blue: #1d4ed8;
	--mk-blue-light: #3b82f6;
	--mk-blue-accent: #2563eb;
	--mk-gold: #c99a3e;
	--mk-gold-light: #dfb256;
	--mk-gold-glow: rgba(201, 154, 62, 0.35);
	--mk-ink: #0f172a;
	--mk-ink-light: #1e293b;
	--mk-muted: #475569;
	--mk-line: #e2e8f0;
	--mk-line-dark: rgba(255, 255, 255, 0.12);
	--mk-bg-alt: #f8fafc;
	--mk-radius-sm: 8px;
	--mk-radius: 16px;
	--mk-radius-lg: 24px;
	--mk-shadow-sm: 0 4px 12px rgba(11, 26, 44, 0.06);
	--mk-shadow: 0 12px 36px -10px rgba(11, 26, 44, 0.12);
	--mk-shadow-lg: 0 24px 48px -12px rgba(11, 26, 44, 0.2);
}

.mk-page-template * {
	box-sizing: border-box;
}

/* Container */
.mk-page-template .mk-container,
.mk-site-footer .mk-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}

/* Sections */
.mk-page-template .mk-section {
	padding: 96px 0;
	position: relative;
}

.mk-page-template .mk-section-alt {
	background: #f8fafc;
}

.mk-page-template .mk-section-dark {
	background: #071526;
	color: #ffffff;
}

/* Section Headings */
.mk-page-template .mk-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c99a3e;
	margin-bottom: 14px;
}

.mk-page-template .mk-eyebrow::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 2px;
	background: #c99a3e;
	border-radius: 2px;
}

.mk-page-template .mk-section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.mk-page-template .mk-section-heading {
	font-family: var(--font-heading);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	color: #071526;
	letter-spacing: -0.02em;
}

.mk-page-template .mk-section-dark .mk-section-heading {
	color: #ffffff;
}

.mk-page-template .mk-section-sub {
	font-size: 17px;
	line-height: 1.65;
	color: #475569;
	margin: 0;
}

.mk-page-template .mk-section-dark .mk-section-sub {
	color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.mk-page-template .mk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	border: 1.5px solid transparent;
	transition: all 0.3s ease;
}

.mk-page-template .mk-btn-primary {
	background: linear-gradient(135deg, #dfb256 0%, #c99a3e 100%);
	color: #071526 !important;
	box-shadow: 0 8px 24px -4px rgba(201, 154, 62, 0.35);
	font-weight: 700;
}

.mk-page-template .mk-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px -4px rgba(201, 154, 62, 0.5);
	background: linear-gradient(135deg, #f0c367 0%, #dfb256 100%);
}

.mk-page-template .mk-btn-lg {
	padding: 18px 40px;
	font-size: 16.5px;
}

/* Grids */
.mk-page-template .mk-grid {
	display: grid;
	gap: 30px;
}

.mk-page-template .mk-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.mk-page-template .mk-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.mk-page-template .mk-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 34px 28px;
	transition: all 0.3s ease;
}

.mk-page-template .mk-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px -10px rgba(11, 26, 44, 0.12);
	border-color: rgba(201, 154, 62, 0.3);
}

.mk-page-template .mk-card-title {
	font-family: var(--font-heading);
	font-size: 19.5px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #071526;
	line-height: 1.3;
}

.mk-page-template .mk-card-text {
	font-size: 15px;
	line-height: 1.65;
	color: #64748b;
	margin: 0;
}

/* CTA */
.mk-page-template .mk-cta {
	background: linear-gradient(135deg, #071526 0%, #0d2847 60%, #0b1a2c 100%) center/cover no-repeat;
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mk-page-template .mk-cta-inner {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mk-page-template .mk-eyebrow-cta {
	color: #c99a3e;
}

.mk-page-template .mk-cta-heading {
	font-family: var(--font-heading);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 18px;
	color: #ffffff !important;
}

.mk-page-template .mk-cta-text {
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 34px;
}

/* ==========================================================================
   1. SITE-WIDE FOOTER TEMPLATE
   ========================================================================== */
.mk-site-footer {
	background: #050f1c;
	color: #94a3b8;
	font-family: var(--font-body);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}

.mk-site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
	opacity: 0.5;
}

.mk-footer-main {
	padding: 88px 0 60px;
	position: relative;
	z-index: 2;
}

.mk-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1.1fr 1.1fr;
	gap: 48px;
}

.mk-footer-col {
	display: flex;
	flex-direction: column;
}

/* Footer Brand */
.mk-footer-logo-wrap {
	margin-bottom: 20px;
}

.mk-footer-logo-wrap img {
	max-height: 44px;
	width: auto;
	display: block;
}

.mk-footer-site-title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

.mk-footer-motto {
	font-family: var(--font-heading);
	font-size: 14.5px;
	font-weight: 600;
	color: #c99a3e;
	margin: 0 0 14px;
	line-height: 1.45;
}

.mk-footer-desc {
	font-size: 14.5px;
	line-height: 1.65;
	color: #94a3b8;
	margin: 0 0 24px;
}

.mk-footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 8px 14px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	width: fit-content;
}

.mk-footer-badge-icon {
	width: 18px;
	height: 18px;
	color: #c99a3e;
	flex: 0 0 auto;
}

.mk-footer-badge-icon svg {
	width: 100%;
	height: 100%;
}

/* Footer Headings & Links */
.mk-footer-heading {
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 22px;
	position: relative;
	padding-bottom: 12px;
}

.mk-footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: #c99a3e;
	border-radius: 2px;
}

.mk-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mk-footer-links li a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 14.5px;
	transition: color 0.25s ease, transform 0.25s ease;
	display: inline-block;
}

.mk-footer-links li a:hover {
	color: #c99a3e;
	transform: translateX(4px);
}

/* Footer Contact */
.mk-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mk-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 14px;
}

.mk-contact-icon {
	width: 20px;
	height: 20px;
	color: #3b82f6;
	flex: 0 0 auto;
	margin-top: 2px;
}

.mk-contact-icon svg {
	width: 100%;
	height: 100%;
}

.mk-contact-details strong {
	display: block;
	color: #ffffff;
	font-size: 13.5px;
	font-family: var(--font-heading);
	margin-bottom: 2px;
}

.mk-contact-details span,
.mk-contact-details a {
	color: #94a3b8;
	text-decoration: none;
	line-height: 1.5;
}

.mk-contact-details a:hover {
	color: #c99a3e;
}

/* Footer Bottom Bar */
.mk-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px 0;
	position: relative;
	z-index: 2;
}

.mk-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.mk-copyright {
	margin: 0;
	font-size: 13.5px;
	color: #64748b;
}

.mk-footer-bottom-meta {
	font-family: var(--font-heading);
	font-size: 12.5px;
	font-weight: 600;
	color: #c99a3e;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ==========================================================================
   2. PAGE HEADER BANNER (Used across all page templates)
   ========================================================================== */
.mk-page-banner {
	background: linear-gradient(135deg, #071526 0%, #0e2a4a 60%, #13365c 100%);
	color: #ffffff;
	padding: 80px 0 84px;
	position: relative;
	overflow: hidden;
}

.mk-page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.5;
	pointer-events: none;
}

.mk-page-banner-content {
	max-width: 820px;
	position: relative;
	z-index: 2;
}

.mk-page-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
	padding: 5px 14px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c99a3e;
	margin-bottom: 18px;
}

.mk-page-title {
	font-family: var(--font-heading);
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff !important;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.mk-page-subtitle {
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* ==========================================================================
   3. DEFAULT PAGE TEMPLATE & ENTRY CONTENT
   ========================================================================== */
.mk-page-body {
	padding: 80px 0 100px;
	background: #ffffff;
}

.mk-article-entry {
	max-width: 920px;
	margin: 0 auto;
}

.mk-entry-content {
	font-size: 17px;
	line-height: 1.8;
	color: #334155;
}

.mk-entry-content h2,
.mk-entry-content h3,
.mk-entry-content h4 {
	color: #071526;
	margin-top: 36px;
	margin-bottom: 16px;
}

.mk-entry-content p {
	margin-bottom: 24px;
}

.mk-entry-content ul,
.mk-entry-content ol {
	margin-bottom: 28px;
	padding-left: 24px;
}

.mk-entry-content li {
	margin-bottom: 8px;
}

.mk-entry-content blockquote {
	border-left: 4px solid #c99a3e;
	background: #f8fafc;
	padding: 20px 28px;
	margin: 32px 0;
	font-style: italic;
	color: #1e293b;
	border-radius: 0 8px 8px 0;
}

/* ==========================================================================
   4. ABOUT US PAGE TEMPLATE
   ========================================================================== */
.mk-split-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 64px;
	align-items: start;
}

.mk-lead-text {
	font-size: 19px;
	line-height: 1.7;
	color: #071526;
	font-weight: 500;
	margin-bottom: 20px;
}

.mk-feature-pill-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 32px;
}

.mk-feature-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 12px 18px;
	border-radius: 8px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: #071526;
}

.mk-feature-pill svg {
	width: 18px;
	height: 18px;
	color: #2563eb;
	flex: 0 0 auto;
}

.mk-stat-card-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mk-stat-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 28px;
	transition: all 0.3s ease;
}

.mk-stat-box:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 154, 62, 0.4);
	box-shadow: 0 10px 30px -10px rgba(11, 26, 44, 0.1);
	background: #ffffff;
}

.mk-stat-icon {
	width: 44px;
	height: 44px;
	background: rgba(201, 154, 62, 0.15);
	color: #c99a3e;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	margin-bottom: 16px;
}

.mk-stat-icon svg {
	width: 100%;
	height: 100%;
}

.mk-stat-title {
	display: block;
	font-family: var(--font-heading);
	font-size: 17.5px;
	color: #071526;
	margin-bottom: 8px;
}

.mk-stat-box p {
	font-size: 14.5px;
	line-height: 1.6;
	color: #64748b;
	margin: 0;
}

.mk-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.mk-purpose-card {
	padding: 42px 36px;
}

.mk-purpose-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #071526 0%, #2563eb 100%);
	color: #ffffff;
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 22px;
}

.mk-purpose-icon svg {
	width: 100%;
	height: 100%;
}

.mk-value-card {
	padding: 30px 24px;
	text-align: center;
}

.mk-value-icon {
	width: 52px;
	height: 52px;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	border-radius: 50%;
	padding: 13px;
	margin: 0 auto 18px;
	transition: all 0.3s ease;
}

.mk-value-card:hover .mk-value-icon {
	background: #c99a3e;
	color: #071526;
	transform: scale(1.1);
}

.mk-value-icon svg {
	width: 100%;
	height: 100%;
}

.mk-governance-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	padding: 38px 34px;
}

.mk-governance-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   5. SERVICES PAGE TEMPLATE
   ========================================================================== */
.mk-service-division {
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid #e2e8f0;
}

.mk-service-division:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mk-division-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 18px;
}

.mk-division-icon {
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, #071526 0%, #2563eb 100%);
	color: #ffffff;
	border-radius: 14px;
	padding: 14px;
	flex: 0 0 auto;
}

.mk-division-icon svg {
	width: 100%;
	height: 100%;
}

.mk-division-lead {
	font-size: 18px;
	color: #475569;
	max-width: 820px;
	margin-bottom: 36px;
	line-height: 1.65;
}

.mk-subservice-card {
	padding: 32px 26px;
	border-radius: 12px;
}

.mk-subservice-icon {
	width: 44px;
	height: 44px;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 18px;
	transition: all 0.3s ease;
}

.mk-subservice-card:hover .mk-subservice-icon {
	background: #c99a3e;
	color: #071526;
	transform: scale(1.08);
}

.mk-subservice-icon svg {
	width: 100%;
	height: 100%;
}

.mk-step-card {
	padding: 36px 28px;
	position: relative;
}

.mk-step-num {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 800;
	color: #c99a3e;
	display: block;
	margin-bottom: 14px;
	line-height: 1;
}

/* ==========================================================================
   6. PROJECTS PAGE TEMPLATE
   ========================================================================== */
.mk-page-project-card {
	overflow: hidden;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 16px rgba(11, 26, 44, 0.05);
}

.mk-page-project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px -10px rgba(11, 26, 44, 0.15);
	border-color: rgba(201, 154, 62, 0.4);
}

.mk-page-project-card .mk-project-media,
.mk-project-card .mk-project-media {
	aspect-ratio: 16 / 10;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mk-project-media.mk-media-placeholder {
	background: linear-gradient(135deg, #071526 0%, #0e2a4a 55%, #153c66 100%);
	position: relative;
}

.mk-project-media.mk-media-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
	opacity: 0.7;
}

/* Designed Project Icon Badge */
.mk-project-icon-badge {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(201, 154, 62, 0.45);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.45);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	z-index: 2;
}

.mk-project-card:hover .mk-project-icon-badge {
	transform: scale(1.12);
	background: linear-gradient(135deg, #dfb256 0%, #c99a3e 100%);
	border-color: #f0c367;
	box-shadow: 0 14px 32px -4px rgba(201, 154, 62, 0.45);
}

.mk-project-badge-icon {
	width: 36px;
	height: 36px;
	color: #c99a3e;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.35s ease, transform 0.35s ease;
}

.mk-project-card:hover .mk-project-badge-icon {
	color: #071526;
	transform: scale(1.05);
}

.mk-project-badge-icon svg {
	width: 100%;
	height: 100%;
}

.mk-project-media .mk-project-category {
	position: absolute;
	bottom: 16px;
	left: 18px;
	z-index: 3;
	background: rgba(7, 21, 38, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 50px;
}

.mk-project-body {
	padding: 26px 28px 30px;
}

.mk-project-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	padding: 4px 12px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	color: #1d4ed8;
	margin-bottom: 14px;
}

.mk-meta-icon {
	width: 15px;
	height: 15px;
	color: #c99a3e;
	flex: 0 0 auto;
}

.mk-meta-icon svg {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   7. MARKETS PAGE TEMPLATE
   ========================================================================== */
.mk-market-segment-block {
	margin-bottom: 72px;
	padding-bottom: 72px;
	border-bottom: 1px solid #e2e8f0;
}

.mk-market-segment-block:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mk-market-segment-head {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 16px;
}

.mk-market-segment-icon {
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, #071526 0%, #c99a3e 100%);
	color: #ffffff;
	border-radius: 14px;
	padding: 14px;
	flex: 0 0 auto;
}

.mk-market-segment-icon svg {
	width: 100%;
	height: 100%;
}

.mk-market-lead {
	font-size: 18px;
	color: #475569;
	max-width: 820px;
	margin-bottom: 34px;
	line-height: 1.65;
}

.mk-market-subcard {
	padding: 30px 24px;
	border-radius: 12px;
}

.mk-coverage-box {
	background: #071526;
	color: #ffffff;
	border-radius: 20px;
	padding: 56px 60px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
}

.mk-coverage-content .mk-section-heading {
	color: #ffffff;
}

.mk-coverage-content p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16.5px;
	line-height: 1.7;
	margin: 0;
}

.mk-coverage-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mk-coverage-stat {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 22px 28px;
}

.mk-coverage-stat strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 20px;
	color: #c99a3e;
	margin-bottom: 4px;
}

.mk-coverage-stat span {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS (Pages & Footer)
   ========================================================================== */
/* ==========================================================================
   8. CONTACT PAGE TEMPLATE
   ========================================================================== */
.mk-contact-body {
	padding: 92px 0 110px;
	background: #f8fafc;
}

.mk-contact-intro {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}

.mk-contact-intro .mk-section-heading {
	margin-bottom: 14px;
}

.mk-contact-intro p {
	font-size: 17px;
	line-height: 1.7;
	color: #475569;
	margin: 0;
}

.mk-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1040px;
	margin: 0 auto;
}

.mk-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	min-height: 176px;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 5px 18px rgba(11, 26, 44, 0.05);
	transition: all 0.3s ease;
}

.mk-contact-card:hover {
	transform: translateY(-5px);
	border-color: rgba(201, 154, 62, 0.45);
	box-shadow: 0 16px 34px -12px rgba(11, 26, 44, 0.16);
}

.mk-contact-card-icon {
	width: 52px;
	height: 52px;
	padding: 13px;
	flex: 0 0 auto;
	color: #ffffff;
	background: linear-gradient(135deg, #071526 0%, #2563eb 100%);
	border-radius: 13px;
	box-shadow: 0 8px 18px -5px rgba(29, 78, 216, 0.35);
}

.mk-contact-card-icon svg {
	width: 100%;
	height: 100%;
}

.mk-contact-card-content {
	min-width: 0;
}

.mk-contact-label {
	display: block;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c99a3e;
	margin-bottom: 8px;
}

.mk-contact-card h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 9px;
	color: #071526;
	word-break: break-word;
}

.mk-contact-card h3 a {
	color: #071526;
	text-decoration: none;
}

.mk-contact-card h3 a:hover {
	color: #1d4ed8;
}

.mk-contact-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0;
}

.mk-contact-card .mk-contact-coordinates {
	font-family: var(--font-heading);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #1d4ed8;
}

.mk-contact-coordinates span {
	color: #c99a3e;
	padding: 0 5px;
}

.mk-contact-phones-list,
.mk-contact-links-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 10px;
}

.mk-contact-phones-list h3,
.mk-contact-links-list h3 {
	margin: 0 !important;
	font-size: 18px !important;
	line-height: 1.35 !important;
}

.mk-contact-phones-list a,
.mk-contact-links-list a {
	color: #071526;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mk-contact-phones-list a:hover,
.mk-contact-links-list a:hover {
	color: #1d4ed8;
}

.mk-contact-note {
	max-width: 1040px;
	margin: 28px auto 0;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 28px;
	background: #071526;
	border-radius: 14px;
	color: #ffffff;
}

.mk-contact-note-icon {
	width: 30px;
	height: 30px;
	padding: 5px;
	color: #c99a3e;
	flex: 0 0 auto;
}

.mk-contact-note-icon svg {
	width: 100%;
	height: 100%;
}

.mk-contact-note strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 16px;
	margin-bottom: 4px;
}

.mk-contact-note p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

/* ==========================================================================
   9. PROJECTS PAGE: EXISTING SECTOR CARDS / DESIGNED ICONS
   No copy is changed here; these rules only improve the existing cards.
   ========================================================================== */
.mk-projects-page .mk-market-card {
	position: relative;
	z-index: 1;
	padding: 34px 24px;
	text-align: center;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-projects-page .mk-market-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(201, 154, 62, 0.48);
	box-shadow: 0 18px 38px -10px rgba(0, 0, 0, 0.4);
}

.mk-projects-page .mk-market-icon-wrap {
	display: inline-flex;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.mk-projects-page .mk-market-icon {
	width: 68px;
	height: 68px;
	padding: 16px;
	color: #c99a3e;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(37, 99, 235, 0.16));
	border: 1px solid rgba(201, 154, 62, 0.42);
	border-radius: 20px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 10px 24px -8px rgba(0, 0, 0, 0.35);
	transition: all 0.35s ease;
}

.mk-projects-page .mk-market-icon svg {
	width: 100%;
	height: 100%;
}

.mk-projects-page .mk-market-card:hover .mk-market-icon {
	color: #071526;
	background: linear-gradient(135deg, #dfb256 0%, #c99a3e 100%);
	border-color: #f0c367;
	transform: scale(1.1) rotate(-3deg);
	box-shadow: 0 12px 28px -5px rgba(201, 154, 62, 0.45);
}

.mk-projects-page .mk-market-card .mk-card-title {
	color: #ffffff;
	font-size: 18px;
}

.mk-projects-page .mk-market-card .mk-card-text {
	color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
	.mk-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.mk-contact-body {
		padding: 60px 0 76px;
	}

	.mk-contact-card {
		padding: 24px 20px;
		gap: 14px;
		min-height: 0;
	}

	.mk-contact-card-icon {
		width: 44px;
		height: 44px;
		padding: 11px;
	}

	.mk-contact-card h3 {
		font-size: 17px;
	}
}



/* ==========================================================================
   10. PREMIUM SITE HEADER (Crisp White / Light Corporate Theme)
   ========================================================================== */
.mk-site-header {
	--mk-header-navy: #071526;
	--mk-header-blue: #1d4ed8;
	--mk-header-gold: #c99a3e;
	position: sticky;
	top: 0;
	z-index: 100;
	font-family: var(--font-body);
	background: #ffffff;
}

/* Neutralize Astra/Header Builder dimensions on the child-theme header. */
.mk-site-header#masthead,
.mk-site-header#masthead.ast-primary-header,
.mk-site-header#masthead.site-header {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #ffffff !important;
	border: 0 !important;
	box-shadow: none;
}

.mk-site-header *,
.mk-site-header *::before,
.mk-site-header *::after {
	box-sizing: border-box;
}

body.admin-bar .mk-site-header {
	top: 32px;
}

/* Header Top Utility Bar */
.mk-header-utility {
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	color: #475569;
	font-size: 12px;
}

.mk-header-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}

.mk-utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 20px;
}

.mk-utility-location,
.mk-utility-phones,
.mk-utility-links,
.mk-utility-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #475569;
	text-decoration: none;
	font-weight: 500;
}

.mk-utility-phones {
	gap: 8px;
}

.mk-utility-phones a {
	color: #475569;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mk-utility-phones a:hover {
	color: #1d4ed8;
}

.mk-utility-sep {
	color: #cbd5e1;
	font-size: 11px;
}

.mk-utility-links {
	gap: 16px;
}

.mk-utility-links a:hover {
	color: #1d4ed8;
}

.mk-utility-icon {
	width: 14px;
	height: 14px;
	color: var(--mk-header-gold);
	display: inline-flex;
}

.mk-utility-icon svg {
	width: 100%;
	height: 100%;
}

.mk-utility-divider {
	width: 1px;
	height: 14px;
	background: #cbd5e1;
}

/* Header Main Navigation Bar */
.mk-header-main {
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	box-shadow: 0 4px 20px rgba(11, 26, 44, 0.05);
}

.mk-header-main-inner {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 28px;
}

.mk-site-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 156px;
}

.mk-site-header .custom-logo-link img {
	width: auto !important;
	max-width: 156px !important;
	max-height: 54px !important;
	height: auto !important;
	object-fit: contain;
	display: block;
}

.mk-header-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.mk-header-tagline {
	padding-left: 14px;
	border-left: 1px solid #e2e8f0;
	font-family: var(--font-heading);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #64748b;
	white-space: nowrap;
}

.mk-header-site-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: #071526;
	text-decoration: none;
}

.mk-header-mark {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dfb256, #c99a3e);
	color: #071526;
	border-radius: 9px;
}

/* Primary Navigation Menu */
.mk-primary-nav {
	margin-left: auto;
}

.mk-primary-nav ul,
.mk-primary-nav .menu,
.mk-primary-nav .mk-primary-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.mk-primary-nav li {
	margin: 0;
	position: relative;
}

.mk-primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 13px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	text-decoration: none;
	border-radius: 7px;
	transition: all 0.25s ease;
}

.mk-primary-nav a:hover {
	color: #1d4ed8;
	background: #f1f5f9;
}

.mk-primary-nav .current-menu-item > a,
.mk-primary-nav .current_page_item > a,
.mk-primary-nav .current-menu-ancestor > a {
	color: #1d4ed8;
	font-weight: 700;
	background: rgba(29, 78, 216, 0.07);
}

.mk-primary-nav li::after {
	content: '';
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 2px;
	height: 2px;
	background: var(--mk-header-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.mk-primary-nav li:hover::after,
.mk-primary-nav .current-menu-item::after,
.mk-primary-nav .current_page_item::after {
	transform: scaleX(1);
}

/* Header CTA Button */
.mk-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.mk-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: linear-gradient(135deg, #dfb256, #c99a3e);
	border-radius: 8px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: #071526 !important;
	text-decoration: none;
	box-shadow: 0 6px 18px -4px rgba(201, 154, 62, 0.4);
	transition: all 0.25s ease;
	white-space: nowrap;
}

.mk-header-cta:hover {
	transform: translateY(-2px);
	background: #f0c367;
	box-shadow: 0 10px 24px -4px rgba(201, 154, 62, 0.5);
	color: #071526 !important;
}

.mk-header-cta svg {
	width: 15px;
	height: 15px;
}

/* Hamburger Toggle */
.mk-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	cursor: pointer;
}

.mk-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px auto;
	background: #071526;
	border-radius: 2px;
	transition: all 0.25s ease;
}

.mk-menu-toggle.is-open span:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.mk-menu-toggle.is-open span:nth-child(3) {
	opacity: 0;
}

.mk-menu-toggle.is-open span:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1050px) {
	.mk-header-main-inner {
		gap: 18px;
	}

	.mk-header-tagline {
		display: none;
	}

	.mk-primary-nav a {
		padding: 0 9px;
		font-size: 13px;
	}

	.mk-header-cta {
		padding: 11px 14px;
		font-size: 12px;
	}
}

@media (max-width: 850px) {
	body.admin-bar .mk-site-header {
		top: 46px;
	}

	.mk-header-utility {
		display: none;
	}

	.mk-header-main-inner {
		min-height: 72px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mk-header-main-inner .mk-header-brand {
		margin-right: auto;
	}

	.mk-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		padding: 14px 20px 24px;
		background: #ffffff;
		border-top: 1px solid #e2e8f0;
		box-shadow: 0 20px 36px rgba(11, 26, 44, 0.12);
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: all 0.25s ease;
	}

	.mk-primary-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.mk-primary-nav ul,
	.mk-primary-nav .menu,
	.mk-primary-nav .mk-primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 4px;
	}

	.mk-primary-nav a {
		width: 100%;
		min-height: 46px;
		padding: 0 14px;
		font-size: 14px;
		color: #1e293b;
	}

	.mk-primary-nav a:hover,
	.mk-primary-nav .current-menu-item > a,
	.mk-primary-nav .current_page_item > a {
		background: #f8fafc;
		color: #1d4ed8;
	}

	.mk-primary-nav li::after {
		left: 0;
		right: auto;
		bottom: 8px;
		width: 3px;
		height: 28px;
		transform: scaleY(0);
	}

	.mk-primary-nav li:hover::after,
	.mk-primary-nav .current-menu-item::after,
	.mk-primary-nav .current_page_item::after {
		transform: scaleY(1);
	}

	.mk-header-actions .mk-header-cta {
		display: none;
	}

	.mk-menu-toggle {
		display: block;
	}

	body.mk-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.mk-header-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.mk-site-header .custom-logo-link img {
		max-width: 128px;
		max-height: 48px;
	}
}
@media (max-width: 1100px) {
	.mk-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.mk-split-grid,
	.mk-coverage-box {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.mk-page-banner {
		padding: 60px 0;
	}

	.mk-page-body {
		padding: 56px 0 72px;
	}

	.mk-grid-2 {
		grid-template-columns: 1fr;
	}

	.mk-feature-pill-list {
		grid-template-columns: 1fr;
	}

	.mk-coverage-box {
		padding: 36px 28px;
	}
}

@media (max-width: 600px) {
	.mk-footer-main {
		padding: 60px 0 40px;
	}

	.mk-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.mk-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.mk-division-header,
	.mk-market-segment-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
