/* ==========================================================================
   FOXSECUR — ABOUT PAGE
   Table of contents:
   1. Hero
   2. Bio / Mission split sections
   3. Commitment to Customers
   4. Commitment to Our Team
   5. Our Process (values grid)
   6. Local Area / Service Coverage
   ========================================================================== */

/* 1. Hero
   ========================================================================== */
.about-hero {
	position: relative;
	background: var(--color-navy);
	overflow: hidden;
	height: 584px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 19%, rgba(0, 26, 21, 0) 100%);
	z-index: 1;
}
.about-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px;
	text-align: center;
}
.about-hero__title {
	font-family: var(--font-alt);
	font-weight: 800;
	font-size: 40px;
	letter-spacing: 0.35px;
	color: var(--color-white);
}
.about-hero__title .accent { color: var(--color-yellow); }
.about-hero__underline {
	width: 362px;
	max-width: 60vw;
	height: 4px;
}

/* 2. Bio / Mission split sections
   ========================================================================== */
.about-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}
.about-split--reverse .about-split__media { order: 2; }
.about-split--reverse .about-split__content { order: 1; }
.about-split__media {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-split__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(35, 45, 100, 0.9) 0%, rgba(35, 45, 100, 0) 100%);
}
.about-split__content .eyebrow { margin-bottom: 20px; }
.about-split__subhead {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 16px;
	color: var(--color-navy);
	margin-top: 12px;
	margin-bottom: 24px;
}
.about-split__content .body-text + .body-text { margin-top: 24px; }
.about-split__callout {
	display: flex;
	align-items: center;
	gap: 20px;
	border-radius: 4px;
	padding: 18px 20px;
	margin-top: 24px;
}
.about-split__callout svg { width: 24px; height: 24px; flex: none; }
.about-split__callout p {
	font-family: var(--font-alt);
	font-size: 12px;
	line-height: 1.5;
}
.about-split__callout--mission {
	background: #eff6ff;
	border-left: 4px solid var(--color-navy);
}
.about-split__callout--mission p { color: var(--color-navy); }

/* 3. Commitment to Customers
   ========================================================================== */
.about-commitment { background: var(--color-bg-light-blue); }
.about-commitment__head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 56px; }
.about-commitment__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.about-commitment__callout {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--color-yellow);
	border-left: 6px solid var(--color-navy);
	border-radius: 4px;
	padding: 18px 20px;
	margin-top: 24px;
}
.about-commitment__callout svg { width: 24px; height: 24px; flex: none; }
.about-commitment__callout p {
	font-family: var(--font-alt);
	font-weight: 700;
	font-size: 14px;
	color: var(--color-navy);
	line-height: 1.4;
}
.about-commitment__video {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
}
.about-commitment__video img { width: 100%; display: block; }
.about-commitment__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.about-commitment__play:hover { transform: translate(-50%, -50%) scale(1.1); }

/* 4. Commitment to Our Team
   ========================================================================== */
.about-team__layout {
	display: grid;
	grid-template-columns: 592px 1fr;
	gap: 48px;
	align-items: center;
}
.about-team__media {
	border-radius: var(--radius-md);
	overflow: hidden;
}
.about-team__media img { width: 100%; display: block; }
.about-team__content .body-text + .body-text { margin-top: 20px; }

/* 5. Our Process (values grid)
   ========================================================================== */
.about-process {
	position: relative;
	background: var(--color-navy);
	overflow: hidden;
}
.about-process__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-process__overlay { position: absolute; inset: 0; background: rgba(35, 45, 100, 0.8); }
.about-process .container { position: relative; z-index: 1; }
.about-process__head { text-align: center; margin-bottom: 48px; }
.about-process__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.about-process-card {
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	background: rgba(4, 11, 51, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	padding: 24px;
}
.about-process-card__icon {
	width: 38px;
	height: 38px;
	background: var(--color-yellow);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.about-process-card__icon svg { width: 24px; height: 24px; }
.about-process-card h3 {
	font-family: var(--font-alt);
	font-weight: 700;
	font-size: 14px;
	color: var(--color-white);
	margin-bottom: 12px;
}
.about-process-card p {
	font-family: var(--font-alt);
	font-size: 14.9px;
	line-height: 1.65;
	color: #99a1af;
}

/* 6. Local Area / Service Coverage
   ========================================================================== */
.about-local__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.about-local__intro { margin-bottom: 24px; }
.about-local__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 22px;
	margin-bottom: 24px;
}
.about-local__item { display: flex; align-items: center; gap: 16px; }
.about-local__item-icon {
	width: 34px;
	height: 34px;
	flex: none;
	background: var(--color-yellow);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-local__item-icon svg { width: 20px; height: 20px; }
.about-local__item span {
	font-family: var(--font-alt);
	font-size: 14px;
	color: var(--color-gray-body);
}
.about-local__layout .body-text + .body-text { margin-top: 16px; }
.about-local__media {
	position: relative;
	border: 4px solid var(--color-gray-light);
	border-radius: 33px;
	overflow: hidden;
	aspect-ratio: 623 / 633;
}
.about-local__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-local__pin {
	position: absolute;
	width: 40px;
	height: auto;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
.about-local__pin--1 { top: 12%; left: 20%; }
.about-local__pin--2 { top: 28%; left: 62%; }
.about-local__pin--3 { top: 42%; left: 35%; }
.about-local__pin--4 { top: 58%; left: 75%; }
.about-local__pin--5 { top: 68%; left: 15%; }
.about-local__pin--6 { top: 80%; left: 50%; }

/* Responsive
   ========================================================================== */
@media (max-width: 1180px) {
	.about-split,
	.about-commitment__grid,
	.about-team__layout,
	.about-local__layout { grid-template-columns: 1fr; }
	.about-split--reverse .about-split__media,
	.about-split--reverse .about-split__content { order: initial; }
	.about-process__grid { grid-template-columns: repeat(2, 1fr); }
	.about-team__media { max-width: 500px; }
}
@media (max-width: 767px) {
	.about-hero { height: 420px; }
	.about-hero__title { font-size: 30px; }
	.about-process__grid { grid-template-columns: 1fr; }
	.about-local__list { grid-template-columns: 1fr; }
}
