/* =========================================================
   CROCKER BUILDING COMPANY - MASTER STYLESHEET
   ========================================================= */

/* ---------------------------------------------------------
   0. ROOT VARIABLES & RESET
   --------------------------------------------------------- */
:root {
	--color-primary: #4773E4;
	--color-primary-light: #6f93f0;
	--color-primary-dark: #3459c2;
	--color-accent: #1B212A;
	--color-accent-light: #2b3444;
	--color-text: #1a1a1a;
	--color-text-light: #5a6472;
	--color-white: #ffffff;
	--color-border: #e3e6eb;
	--gradient-primary: linear-gradient(135deg, #5c86ec 0%, #4773E4 55%, #3459c2 100%);
	--gradient-dark: linear-gradient(135deg, #1B212A 0%, #232b38 55%, #1B212A 100%);
	--font-body: 'Inter', Arial, Helvetica, sans-serif;
	--font-heading: 'Oswald', Arial, Helvetica, sans-serif;
	--header-height-desktop: 120px;
	--header-height-mobile: 74px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: normal;
	color: var(--color-text);
	background-color: var(--color-white);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: var(--color-primary);
}

ul {
	list-style: none;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.section {
	width: 100%;
	padding: 100px 0;
	position: relative;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--color-accent);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1;
	color: var(--color-white);
	background: var(--gradient-primary);
	padding: 18px 36px;
	border-radius: 4px;
	text-transform: uppercase;
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 12px 30px -8px rgba(71, 115, 228, 0.55);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px -6px rgba(71, 115, 228, 0.65);
	filter: brightness(1.06);
}

.btn-outline {
	background: transparent;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
	box-shadow: none;
}

.btn-outline:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
	box-shadow: 0 14px 30px -8px rgba(27, 33, 42, 0.4);
}

.btn-white {
	background: var(--color-white);
	color: var(--color-accent);
	border-color: var(--color-white);
	box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
}

.btn-white:hover {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

.btn-outline-light {
	background: transparent;
	color: var(--color-white);
	border: 2px solid rgba(255, 255, 255, 0.75);
	box-shadow: none;
}

.btn-outline-light:hover {
	background: var(--color-white);
	color: var(--color-accent);
	border-color: var(--color-white);
	box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
}

.heading-rule {
	display: block;
	width: 60px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
	margin-top: 18px;
	margin-bottom: 18px;
}

.heading-rule-center {
	margin-left: auto;
	margin-right: auto;
}

.section-heading {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 2;
}

.section-heading h2 {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	color: var(--color-accent);
	text-transform: uppercase;
}

/* Fade-in-up scroll animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition-delay: 0.15s;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------------------------------------------------------
   SECTION: HEADER SECTION
   --------------------------------------------------------- */
.site-header {
	width: 100%;
	height: var(--header-height-desktop);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	transition: box-shadow 0.3s ease, height 0.3s ease;
	border-bottom: 1px solid rgba(27, 33, 42, 0.06);
}

.site-header.scrolled {
	box-shadow: 0 10px 30px rgba(27, 33, 42, 0.14);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo-img {
	height: 72px;
	max-height: 72px;
	width: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.main-nav > ul {
	display: flex;
	align-items: center;
	gap: 34px;
}

.main-nav > ul > li {
	position: relative;
}

.main-nav > ul > li > a {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.8px;
	line-height: 1;
	color: var(--color-accent);
	text-transform: uppercase;
	padding: 10px 0;
	position: relative;
}

.main-nav > ul > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
	width: 100%;
}

.main-nav > ul > li > a.active {
	color: var(--color-primary);
}

.nav-call-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
	color: var(--color-white);
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
	padding: 9px 18px;
	border-radius: 4px;
	white-space: nowrap;
	transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.nav-call-btn:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	transform: translateY(-2px);
}

/* Mega Menu */
.has-mega .mega-menu {
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: var(--color-white);
	box-shadow: 0 24px 55px rgba(27, 33, 42, 0.2);
	border-radius: 6px;
	display: flex;
	gap: 30px;
	padding: 22px 22px;
	min-width: 480px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	border-top: 3px solid var(--color-primary);
}

@media (min-width: 769px) {
	.has-mega:hover .mega-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
}

.mega-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.mega-col a {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.4;
	color: var(--color-text-light);
	white-space: nowrap;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, padding-left 0.2s ease;
}

@media (min-width: 769px) {
	.mega-col a {
		padding: 10px 16px;
		border-radius: 6px;
	}

	.mega-col a:hover {
		color: var(--color-white);
		background: var(--color-primary);
		box-shadow: 0 4px 8px -4px rgba(71, 115, 228, 0.35);
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--color-accent);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ---------------------------------------------------------
   SECTION: SUB-PAGE TITLE BAR
   --------------------------------------------------------- */
.page-title-bar {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: var(--gradient-primary);
	padding: 64px 0 46px;
}

.page-title-texture {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.08) 0px,
		rgba(255, 255, 255, 0.08) 2px,
		transparent 2px,
		transparent 26px
	);
}

.page-title-inner {
	position: relative;
	z-index: 1;
}

.page-title-bar h1 {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
	color: var(--color-white);
}

.breadcrumb span {
	color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------
   SECTION 1: SERVICE DETAIL SECTION
   --------------------------------------------------------- */
.service-detail-section {
	position: relative;
	overflow: hidden;
	background-color: var(--color-white);
}

.service-detail-blueprint {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background-image:
		linear-gradient(rgba(71, 115, 228, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(71, 115, 228, 0.06) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(270deg, black 0%, transparent 100%);
	-webkit-mask-image: linear-gradient(270deg, black 0%, transparent 100%);
	z-index: 0;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 70px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.service-eyebrow {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.5px;
	line-height: 1;
	color: var(--color-primary);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.service-detail-copy h2 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.25;
	color: var(--color-accent);
	text-transform: uppercase;
}

.service-detail-copy p {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-top: 22px;
}

.project-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 30px;
	margin-top: 28px;
}

.project-list li {
	position: relative;
	padding-left: 26px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.5;
	color: var(--color-text);
}

.project-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: var(--gradient-primary);
}

.service-detail-image {
	position: relative;
}

.service-detail-frame {
	position: absolute;
	top: 10px;
	right: -10px;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.4;
	border-radius: 10px;
	z-index: 0;
}

.service-detail-image-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 380px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(27, 33, 42, 0.28);
}

.service-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------
   SECTION: HERO SECTION
   --------------------------------------------------------- */
.hero {
	position: relative;
	width: 100%;
	height: 750px;
	overflow: hidden;
	background-color: var(--color-accent);
}

.hero-slides {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(27, 33, 42, 0.92) 0%, rgba(27, 33, 42, 0.68) 40%, rgba(71, 115, 228, 0.45) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	line-height: 1;
	color: var(--color-white);
	text-transform: uppercase;
	background: rgba(71, 115, 228, 0.22);
	border: 1px solid rgba(111, 147, 240, 0.55);
	padding: 10px 18px;
	border-radius: 30px;
	margin-bottom: 26px;
	backdrop-filter: blur(4px);
}

.badge-break {
	display: none;
}

.mobile-break {
	display: none;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 72px;
	font-weight: 800;
	letter-spacing: 1.5px;
	line-height: 1.1;
	color: var(--color-white);
	text-transform: uppercase;
	max-width: 820px;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.text-gold {
	color: #e8b23d;
}

.hero-title .text-gold {
	filter: drop-shadow(0 3px 14px rgba(232, 178, 61, 0.35));
}

.hero-services {
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	margin-top: 18px;
	text-transform: uppercase;
	transition-delay: 0.3s;
}

.hero-services-sep {
	color: #e8b23d;
	margin: 0 4px;
}

.hero-btn {
	margin-top: 42px;
	transition-delay: 0.45s;
}

.hero-dots {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.hero-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.45);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dots button.active {
	background: var(--gradient-primary);
	transform: scale(1.25);
}

.hero-scroll-cue {
	position: absolute;
	bottom: 30px;
	right: 40px;
	z-index: 2;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 14px;
	display: none;
}

.hero-scroll-cue span {
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background-color: var(--color-white);
	border-radius: 2px;
	animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
	0% { opacity: 1; transform: translateY(0); }
	70% { opacity: 0; transform: translateY(14px); }
	100% { opacity: 0; transform: translateY(14px); }
}

/* ---------------------------------------------------------
   SECTION: STATS SEPARATOR BAR
   --------------------------------------------------------- */
.stats-bar {
	width: 100%;
	background: var(--gradient-dark);
	position: relative;
	overflow: hidden;
	padding: 42px 0;
}

.stats-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05) 0px,
		rgba(255, 255, 255, 0.05) 2px,
		transparent 2px,
		transparent 26px
	);
}

.stats-bar::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(71, 115, 228, 0.18) 0%, transparent 40%, transparent 60%, rgba(71, 115, 228, 0.18) 100%);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	z-index: 1;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
	border-right: none;
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.1;
	color: var(--color-white);
	background: linear-gradient(135deg, #ffffff 0%, #a9c0f7 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.8px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.72);
	text-transform: uppercase;
	margin-top: 8px;
}

/* ---------------------------------------------------------
   SECTION: ICON / SERVICE CARDS
   --------------------------------------------------------- */
.icon-cards-section {
	background-color: #f5f7fa;
	background-image: radial-gradient(circle at 1px 1px, rgba(27, 33, 42, 0.07) 1px, transparent 0);
	background-size: 22px 22px;
	padding-top: 90px;
	padding-bottom: 90px;
}

.icon-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
}

.icon-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px -12px rgba(27, 33, 42, 0.12);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
	position: relative;
}

.icon-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px -16px rgba(71, 115, 228, 0.3);
	border-color: rgba(71, 115, 228, 0.35);
}

.icon-card-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.icon-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(27, 33, 42, 0) 55%, rgba(27, 33, 42, 0.55) 100%);
}

.icon-card-badge {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 30px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--color-white);
	box-shadow: 0 10px 22px -6px rgba(71, 115, 228, 0.55);
	z-index: 2;
	border: 4px solid var(--color-white);
}

.icon-card-badge svg {
	width: 26px;
	height: 26px;
}

.icon-card-body {
	padding: 22px 30px 32px;
}

.icon-card h3 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.25;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.icon-card p {
	font-size: 15.5px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.6;
	color: var(--color-text-light);
	margin-bottom: 18px;
}

.icon-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
	color: var(--color-primary);
	text-transform: uppercase;
	transition: gap 0.3s ease;
}

.icon-card-link svg {
	transition: transform 0.3s ease;
}

.icon-card:hover .icon-card-link svg {
	transform: translateX(4px);
}

/* ---------------------------------------------------------
   SECTION: TEAM CARDS
   --------------------------------------------------------- */
.team-intro {
	max-width: 760px;
	position: relative;
	z-index: 1;
}

.team-intro h2 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.25;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-top: 4px;
}

.team-intro p {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-top: 22px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
	z-index: 1;
	margin-top: 50px;
}

.team-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 40px 24px 28px;
	overflow: hidden;
	box-shadow: 0 10px 26px -16px rgba(27, 33, 42, 0.14);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.team-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gradient-primary);
}

.team-card.is-leadership::before {
	background: linear-gradient(135deg, #f0c565 0%, #e8b23d 55%, #c9932a 100%);
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 50px -18px rgba(71, 115, 228, 0.32);
	border-color: rgba(71, 115, 228, 0.35);
}

.team-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
	box-shadow: 0 12px 24px -8px rgba(71, 115, 228, 0.5);
	margin-bottom: 20px;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card.is-leadership .team-avatar {
	background: linear-gradient(135deg, #f0c565 0%, #e8b23d 55%, #c9932a 100%);
	box-shadow: 0 12px 24px -8px rgba(232, 178, 61, 0.55);
}

.team-card:hover .team-avatar {
	transform: scale(1.08);
}

.team-card h3 {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.3px;
	line-height: 1.3;
	color: var(--color-accent);
}

.team-title {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	color: var(--color-primary);
	text-transform: uppercase;
	margin-top: 8px;
	padding: 5px 14px;
	border-radius: 20px;
	background-color: rgba(71, 115, 228, 0.1);
}

.team-card.is-leadership .team-title {
	color: #b3811f;
	background-color: rgba(232, 178, 61, 0.14);
}

.team-email {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1;
	color: var(--color-text-light);
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border);
	width: 100%;
	justify-content: center;
	transition: color 0.3s ease;
}

.team-email svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.team-card:hover .team-email {
	color: var(--color-primary);
}

.team-card:hover .team-email svg {
	transform: translateY(-2px);
}

/* ---------------------------------------------------------
   SECTION 1: WELCOME SECTION
   --------------------------------------------------------- */
.welcome-section {
	background-color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.welcome-blueprint {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background-image:
		linear-gradient(rgba(71, 115, 228, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(71, 115, 228, 0.06) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(270deg, black 0%, transparent 100%);
	-webkit-mask-image: linear-gradient(270deg, black 0%, transparent 100%);
	z-index: 0;
}

.welcome-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 70px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.welcome-heading {
	position: relative;
	margin-bottom: 28px;
}

.watermark-number {
	position: absolute;
	top: -60px;
	left: -12px;
	font-family: var(--font-heading);
	font-size: 180px;
	font-weight: 700;
	color: rgba(71, 115, 228, 0.08);
	line-height: 1;
	z-index: -1;
	user-select: none;
}

.welcome-heading h2 {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.15;
	color: var(--color-accent);
	text-transform: uppercase;
}

.welcome-eyebrow {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.5;
	color: var(--color-primary);
	text-transform: uppercase;
}

.welcome-copy {
	display: flex;
	flex-direction: column;
}

.welcome-copy p {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-bottom: 24px;
}

.welcome-copy .btn {
	margin-top: 12px;
	align-self: flex-start;
}

.welcome-image {
	position: relative;
}

.welcome-image-frame {
	position: absolute;
	top: 10px;
	right: -10px;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.4;
	border-radius: 10px;
	z-index: 0;
}

.welcome-image-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 380px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(27, 33, 42, 0.28);
}

.welcome-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------
   SECTION: OUR WORK GALLERY SECTION
   --------------------------------------------------------- */
.work-gallery-section {
	background-color: #f5f7fa;
	background-image: radial-gradient(circle at 1px 1px, rgba(27, 33, 42, 0.07) 1px, transparent 0);
	background-size: 22px 22px;
}

.work-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.work-gallery-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	box-shadow: 0 14px 30px -14px rgba(27, 33, 42, 0.25);
}

.work-gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.work-gallery-item:hover::after {
	opacity: 0.35;
}

.work-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.work-gallery-item:hover img {
	transform: scale(1.08);
}

/* ---------------------------------------------------------
   SECTION 2: SERVICES OVERVIEW SECTION
   --------------------------------------------------------- */
.services-section {
	width: 100%;
	padding: 100px 0;
	position: relative;
	background: var(--gradient-dark);
	overflow: hidden;
}

.services-grid-texture {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 48px 48px;
}

.services-section::after {
	content: "";
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 140%;
	background: radial-gradient(circle, rgba(71, 115, 228, 0.25) 0%, transparent 70%);
	pointer-events: none;
}

.services-section .section-heading h2 {
	font-size: 34px;
	color: var(--color-white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.service-item {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 44px 38px;
	transition: background-color 0.35s ease, transform 0.35s ease;
}

.service-item:hover {
	background-color: rgba(71, 115, 228, 0.14);
	transform: translateY(-4px);
}

.service-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(71, 115, 228, 0.16);
	border: 1px solid rgba(111, 147, 240, 0.35);
	color: var(--color-primary-light);
	margin-bottom: 20px;
}

.service-item-icon svg {
	width: 26px;
	height: 26px;
}

.service-item h3 {
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.3;
	color: var(--color-white);
	margin-bottom: 10px;
}

.service-item p {
	font-size: 15.5px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

/* ---------------------------------------------------------
   SECTION 3: PARALLAX CTA SECTION
   --------------------------------------------------------- */
.parallax-cta {
	position: relative;
	width: 100%;
	height: 640px;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.parallax-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(71, 115, 228, 0.78) 0%, rgba(27, 33, 42, 0.76) 100%);
}

.parallax-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.parallax-content h2 {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.35;
	color: var(--color-white);
	max-width: 780px;
	text-transform: uppercase;
	text-shadow: 0 4px 26px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.parallax-content h2 strong {
	font-weight: 800;
	color: #e8b23d;
}

/* ---------------------------------------------------------
   SECTION 4: OUR CLIENTS SECTION
   --------------------------------------------------------- */
.clients-section {
	background-color: var(--color-white);
	overflow: hidden;
}

.clients-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.clients-marquee-move {
	display: flex;
	align-items: center;
	gap: 70px;
	width: max-content;
	animation: marquee 32s linear infinite;
}

.clients-track {
	display: flex;
	align-items: center;
	gap: 70px;
	flex-shrink: 0;
}

.clients-track img {
	height: 84px;
	width: auto;
	opacity: 0.9;
	transition: opacity 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
}

.clients-track img:hover {
	opacity: 1;
	transform: scale(1.05);
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   SECTION: CONTACT PAGE
   --------------------------------------------------------- */
.contact-section {
	position: relative;
	overflow: hidden;
	background-color: var(--color-white);
}

.contact-intro {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.contact-intro h2 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.25;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-top: 4px;
}

.contact-intro .heading-rule {
	margin-left: auto;
	margin-right: auto;
}

.contact-intro p {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-top: 22px;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 54px;
	position: relative;
	z-index: 1;
}

.contact-info-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 46px 30px 40px;
	overflow: hidden;
	box-shadow: 0 10px 26px -16px rgba(27, 33, 42, 0.14);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gradient-primary);
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 50px -18px rgba(71, 115, 228, 0.32);
	border-color: rgba(71, 115, 228, 0.35);
}

.contact-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--color-white);
	box-shadow: 0 12px 24px -8px rgba(71, 115, 228, 0.5);
	margin-bottom: 24px;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-icon svg {
	width: 30px;
	height: 30px;
}

.contact-info-card:hover .contact-info-icon {
	transform: scale(1.08);
}

.contact-info-card h3 {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.3;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.6;
	color: var(--color-text-light);
}

.contact-info-card a:hover {
	color: var(--color-primary);
}

.contact-info-card .contact-phone-link {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--color-primary);
}

.contact-map-hero {
	width: 100%;
	position: relative;
}

.contact-map-embed {
	width: 100%;
	height: 480px;
	border: 0;
	display: block;
	filter: grayscale(15%) contrast(1.02);
}

/* ---------------------------------------------------------
   FAT FOOTER SECTION
   --------------------------------------------------------- */
.fat-footer {
	width: 100%;
	background: var(--gradient-dark);
	padding: 70px 0 50px;
	position: relative;
	overflow: hidden;
	border-top: 3px solid transparent;
	border-image: var(--gradient-primary);
	border-image-slice: 1;
}

.fat-footer-texture {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 44px 44px;
}

.fat-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1.2fr;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.footer-col h4 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.8px;
	line-height: 1.3;
	color: var(--color-white);
	text-transform: uppercase;
	margin-bottom: 22px;
}

.footer-logo {
	height: 50px;
	width: auto;
	margin-bottom: 22px;
	filter: brightness(0) invert(1);
}

.footer-phone {
	display: block;
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.2;
	color: var(--color-white);
	margin-bottom: 14px;
	transition: color 0.2s ease;
}

.footer-phone:hover {
	color: var(--color-primary-light);
}

.footer-line {
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
}

a.footer-line:hover {
	color: var(--color-white);
}

.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-links a {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 2.1;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
	color: var(--color-white);
	padding-left: 4px;
}

.footer-map-embed {
	width: 100%;
	height: 220px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(15%);
}

/* ---------------------------------------------------------
   COPYRIGHT FOOTER BAR
   --------------------------------------------------------- */
.copyright-bar {
	width: 100%;
	background-color: #12161c;
	padding: 20px 0;
}

.copyright-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.copyright-inner p {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.copyright-inner a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 600;
}

.copyright-inner a:hover {
	color: var(--color-primary-light);
}

/* ---------------------------------------------------------
   STICKY MOBILE CALL BAR
   --------------------------------------------------------- */
.sticky-call-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: var(--gradient-primary);
	color: var(--color-white);
	align-items: center;
	justify-content: center;
	gap: 10px;
	z-index: 1200;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.sticky-call-bar svg {
	flex-shrink: 0;
	animation: ringPulse 1.6s ease-in-out infinite;
}

@keyframes ringPulse {
	0%, 100% { transform: rotate(0deg); }
	10% { transform: rotate(-15deg); }
	20% { transform: rotate(12deg); }
	30% { transform: rotate(0deg); }
}

/* =========================================================
   RESPONSIVE - TABLET / MOBILE
   ========================================================= */
@media (max-width: 1080px) {
	.hero-title {
		font-size: 48px;
	}

	.welcome-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 30px;
	}

	.stat-item:nth-child(2) {
		border-right: none;
	}

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

	.welcome-image {
		max-width: 420px;
		margin: 0 auto;
	}

	.service-detail-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-detail-image {
		max-width: 420px;
		margin: 0 auto;
	}

	.icon-cards {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 0 auto;
	}

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

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

	.contact-info-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}

	.fat-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-map {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height-mobile: 74px;
	}

	.page-title-bar {
		padding: 44px 0 32px;
	}

	.page-title-bar h1 {
		font-size: 28px;
	}

	.service-detail-copy h2 {
		font-size: 28px;
	}

	.project-list {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
	}

	.contact-map-embed {
		height: 320px;
	}

	.site-header {
		height: var(--header-height-mobile);
	}

	.logo-img {
		height: 50px;
	}

	.nav-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: var(--header-height-mobile);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height-mobile));
		background-color: var(--color-white);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 30px 24px;
		gap: 20px;
		transform: translateX(-100%);
		transition: transform 0.35s ease;
		overflow-y: auto;
		box-shadow: inset 0 6px 12px -6px rgba(0,0,0,0.08);
	}

	.main-nav.open {
		transform: translateX(0);
	}

	.main-nav > ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		width: 100%;
	}

	.main-nav > ul > li {
		width: 100%;
	}

	.main-nav > ul > li > a {
		display: block;
		padding: 14px 0;
		font-size: 17px;
		border-bottom: 1px solid var(--color-border);
	}

	.has-mega > a {
		pointer-events: none;
	}

	.main-nav > ul > li.has-mega > a {
		border-bottom: none;
	}

	.has-mega .mega-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: flex;
		box-shadow: none;
		border-top: none;
		min-width: 0;
		flex-direction: column;
		gap: 10px;
		padding: 4px 0 14px 16px;
		margin-top: -6px;
	}

	.mega-col {
		gap: 10px;
	}

	.mega-col a {
		position: relative;
		font-size: 15.5px;
		padding-left: 18px;
	}

	.mega-col a::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: var(--color-primary);
	}

	.nav-call-btn {
		display: none;
	}

	.hero {
		height: 520px;
	}

	.hero-title {
		font-size: 34px;
	}

	.hero-services {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.hero-badge {
		text-align: center;
		white-space: normal;
		line-height: 1.6;
	}

	.badge-sep {
		display: none;
	}

	.badge-break {
		display: block;
	}

	.mobile-break {
		display: block;
	}

	.hero-btn {
		display: none;
	}

	.section {
		padding: 64px 0;
	}

	.service-detail-section {
		padding-top: 40px;
	}

	.icon-cards-section {
		padding-top: 40px;
	}

	.section-heading h2 {
		font-size: 30px;
	}

	.stats-bar {
		padding: 34px 0;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 26px;
	}

	.stat-item {
		border-right: none;
	}

	.stat-number {
		font-size: 32px;
	}

	.welcome-heading h2 {
		font-size: 32px;
	}

	.watermark-number {
		font-size: 110px;
		top: -34px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.parallax-cta {
		height: auto;
		padding: 60px 0;
		background-attachment: scroll;
	}

	.parallax-content {
		flex-direction: column;
		text-align: center;
	}

	.parallax-content h2 {
		font-size: 24px;
	}

	.fat-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-map {
		grid-column: span 1;
	}

	.copyright-inner {
		flex-direction: column;
		text-align: center;
	}

	.sticky-call-bar {
		display: flex;
	}

	body {
		padding-bottom: 50px;
	}
}

@media (max-width: 420px) {
	.hero-title {
		font-size: 28px;
	}

	.footer-phone {
		font-size: 28px;
	}
}
