/* ==========================================================================
   Proma360 — custom theme overrides (2026 redesign)
   Loaded after theme.css / theme-elements.css / skins/default.css.
   Keep this file additive: prefer new rules over editing the vendor CSS.
   ========================================================================== */

:root {
	/* Align the brand blue used across buttons/backgrounds with the logo color */
	--primary: #0079c1;
	--primary-100: #006aa8;
	--primary-200: #00619b;
	--primary-300: #00588c;
	--primary--100: #1a8ccb;
	--primary--200: #2f97d3;
	--primary--300: #47a3da;
	--primary-rgba-0: rgba(0, 121, 193, 0);
	--primary-rgba-10: rgba(0, 121, 193, 0.1);
	--primary-rgba-20: rgba(0, 121, 193, 0.2);
	--primary-rgba-30: rgba(0, 121, 193, 0.3);
	--primary-rgba-40: rgba(0, 121, 193, 0.4);
	--primary-rgba-50: rgba(0, 121, 193, 0.5);
	--primary-rgba-60: rgba(0, 121, 193, 0.6);
	--primary-rgba-70: rgba(0, 121, 193, 0.7);
	--primary-rgba-80: rgba(0, 121, 193, 0.8);
	--primary-rgba-90: rgba(0, 121, 193, 0.9);

	--ink: #172431;
	--body-grey: #5b6b79;
	--surface-alt: #f5f8fa;
}

body {
	color: var(--body-grey);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--ink);
}

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

#header .header-body-light {
	background-color: rgba(255, 255, 255, 0.97) !important;
	border-bottom: 1px solid rgba(23, 36, 49, 0.06);
}

#header .header-logo img {
	max-height: 42px;
	width: auto;
}

#header .header-nav-main nav > ul > li > a {
	font-weight: 600;
	letter-spacing: 0.03em;
}

#header .header-nav-main nav > ul > li > a:hover {
	color: var(--primary) !important;
}

/* Desktop (>991px): white header bar, no pill background on .active — dark text, blue when active */
@media (min-width: 992px) {
	#header .header-nav-main nav > ul > li > a {
		color: var(--ink) !important;
	}
	#header .header-nav-main nav > ul > li > a.active {
		color: var(--primary) !important;
	}
}

/* Mobile (<=991px): theme's own dropdown panel has a dark background — light text, white on the blue active pill */
@media (max-width: 991px) {
	#header .header-nav-main nav > ul > li > a {
		color: rgba(255, 255, 255, 0.85) !important;
	}
	#header .header-nav-main nav > ul > li > a.active {
		color: #fff !important;
	}
}

#header .header-btn-collapse-nav {
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(23, 36, 49, 0.15);
	border-radius: 8px;
	color: var(--ink);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Only ever shown below the collapse breakpoint (theme.css hides it by default at desktop widths) */
@media (max-width: 991px) {
	#header .header-btn-collapse-nav {
		display: inline-flex !important;
	}
}

#header .header-btn-collapse-nav i {
	font-size: 1.05rem;
	line-height: 1;
}

#header .header-btn-collapse-nav:hover,
#header .header-btn-collapse-nav:focus,
#header .header-btn-collapse-nav[aria-expanded="true"] {
	background: var(--primary-rgba-10);
	border-color: var(--primary);
	color: var(--primary);
}

/* ---------- Hero ---------- */

.hero-slide {
	position: relative;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 20, 30, 0.55) 0%, rgba(10, 20, 30, 0.35) 45%, rgba(10, 20, 30, 0.65) 100%);
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.5em 1.3em;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(2px);
}

.hero-heading {
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.1;
}

.hero-lead {
	max-width: 640px;
}

/* ---------- Services ---------- */

#services.section-light {
	background-color: #fff;
}

.section-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.service-card {
	height: 100%;
	background: #fff;
	border: 1px solid rgba(23, 36, 49, 0.08);
	border-radius: 12px;
	padding: 2.75rem 2.25rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(23, 36, 49, 0.08);
	border-color: rgba(0, 121, 193, 0.25);
}

.service-card .feature-box-icon {
	width: 3.6em;
	height: 3.6em;
	margin: 0 auto 1.5rem;
	border-width: 2px;
}

.service-card .feature-box-icon .icons {
	font-size: 1.6em;
}

.service-card .feature-box-info {
	padding-left: 0;
	text-align: center;
}

/* ---------- Contact ---------- */

#contact .contact-map-col {
	min-height: 420px;
}

.contact-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(23, 36, 49, 0.08);
}

/* ---------- Contact strip ---------- */

.contact-strip .feature-box-icon {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.contact-strip .feature-box-icon .icons {
	color: #fff;
}

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

#footer .footer-copyright p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}
