/**
 * BS1 Facilities — Custom Styles
 * Supplements theme.json with interactive states and layout refinements.
 */

/* ------------------------------------------------
   Global animation utilities
   ------------------------------------------------ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-on-scroll {
	/* Initially visible — JS will hide elements to prevent flash */
}

.animate-on-scroll.is-visible {
	opacity: 1;
	animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.slide-in-left.is-visible {
	animation: slideInLeft 0.6s ease-out forwards;
}

.animate-on-scroll.fade-in.is-visible {
	animation: fadeIn 0.8s ease-out forwards;
}

/* Staggered delays for grouped items */
.animate-on-scroll.delay-1.is-visible { animation-delay: 0.1s; }
.animate-on-scroll.delay-2.is-visible { animation-delay: 0.2s; }
.animate-on-scroll.delay-3.is-visible { animation-delay: 0.3s; }
.animate-on-scroll.delay-4.is-visible { animation-delay: 0.4s; }
.animate-on-scroll.delay-5.is-visible { animation-delay: 0.5s; }
.animate-on-scroll.delay-6.is-visible { animation-delay: 0.6s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	.animate-on-scroll,
	.animate-on-scroll.is-visible,
	.animate-on-scroll.slide-in-left.is-visible,
	.animate-on-scroll.fade-in.is-visible,
	.delay-1, .delay-2, .delay-3, .delay-4, .delay-5, .delay-6 {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}
}

/* ------------------------------------------------
   Buttons — transitions & outline variant
   ------------------------------------------------ */
.wp-block-button .wp-block-button__link {
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
	padding: 14px 28px;
}

.wp-block-button .wp-block-button__link:hover {
	transform: translateY(-2px);
}

.wp-block-button .wp-block-button__link:active {
	transform: translateY(0);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border: 2px solid currentColor;
	background: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:active {
	transform: translateY(0);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--bs1-white);
	color: var(--wp--preset--color--bs1-black);
	border-color: var(--wp--preset--color--bs1-white);
}

/* ------------------------------------------------
   Header — black bar with gradient fade beneath
   ------------------------------------------------ */
.bs1-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.bs1-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	transform: translateY(100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	z-index: 99;
}

/* ------------------------------------------------
   Section heading decorators (red underline)
   ------------------------------------------------ */
.bs1-section-heading::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--wp--preset--color--bs1-red);
	margin: 16px auto 0;
}

/* ------------------------------------------------
   Service cards — hover lift
   ------------------------------------------------ */
.bs1-service-card {
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
	text-align: center;
	will-change: transform, box-shadow;
}

.bs1-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ------------------------------------------------
   SVG icon containers (Lucide icons)
   ------------------------------------------------ */
.bs1-icon,
.bs1-service-icon,
.bs1-contact-icon,
.bs1-culture-icon,
.bs1-coverage-icon,
.bs1-people-icon {
	color: #CC1B1B;
}

.bs1-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	width: 64px;
	height: 64px;
}

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

.bs1-icon-large {
	width: 80px;
	height: 80px;
}

/* ------------------------------------------------
   Promise section — column dividers
   ------------------------------------------------ */
.bs1-promise-col {
	position: relative;
}

.bs1-promise-col + .bs1-promise-col::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10%;
	height: 80%;
	width: 1px;
	background: rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------
   Location pins
   ------------------------------------------------ */
.bs1-location-item {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.2s ease;
}

.bs1-location-item:hover {
	transform: translateX(4px);
}

.bs1-location-pin svg {
	width: 20px;
	height: 20px;
	fill: var(--wp--preset--color--bs1-red);
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.bs1-location-item:hover .bs1-location-pin svg {
	transform: scale(1.1);
}

/* ------------------------------------------------
   Red curved SVG divider — reusable between sections
   ------------------------------------------------ */
.bs1-red-curve-divider {
	margin-top: -140px !important;
	margin-bottom: 0 !important;
	line-height: 0;
	font-size: 0;
	position: relative;
	z-index: 10;
}

.bs1-red-curve-divider svg {
	display: block;
	width: 100%;
	height: 140px;
}

/* ------------------------------------------------
   Footer social icons
   ------------------------------------------------ */
.bs1-social-links {
	display: flex;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.bs1-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0;
	color: var(--wp--preset--color--bs1-white);
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.bs1-social-links a:hover {
	background-color: var(--wp--preset--color--bs1-red);
	border-color: var(--wp--preset--color--bs1-red);
	transform: translateY(-2px);
}

.bs1-social-links a:active {
	transform: translateY(0);
}

.bs1-social-links svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* ------------------------------------------------
   Responsive adjustments
   ------------------------------------------------ */
@media (max-width: 782px) {
	.bs1-promise-col + .bs1-promise-col::before {
		display: none;
	}

	.bs1-header .wp-block-navigation {
		font-size: 0.8rem;
	}
}

/* ------------------------------------------------
   Cover block — min-height for hero + background image
   ------------------------------------------------ */
.bs1-hero-cover:not(.bs1-about-hero) {
	min-height: 90vh;
}

.bs1-about-hero {
	min-height: 70vh;
}

.bs1-hero-cover {
	display: flex;
	align-items: center;
	background-image: url('../images/hero-bg.jpeg') !important;
	background-size: cover !important;
	background-position: center center !important;
}

/* ------------------------------------------------
   Navigation hover + active states
   ------------------------------------------------ */
.bs1-header .wp-block-navigation .wp-block-navigation-item__content {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: var(--wp--preset--color--bs1-white);
	text-decoration: none;
	padding-bottom: 8px;
	transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.bs1-header .wp-block-navigation .wp-block-navigation-item__content::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background-color: var(--wp--preset--color--bs1-red);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.2s ease;
}

.bs1-header .wp-block-navigation .wp-block-navigation-item__content:hover,
.bs1-header .wp-block-navigation .wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--bs1-red);
	transform: translateY(-1px);
}

.bs1-header .wp-block-navigation .wp-block-navigation-item__content:hover::after,
.bs1-header .wp-block-navigation .wp-block-navigation-item__content:focus-visible::after {
	transform: scaleX(1);
}

.bs1-header .wp-block-navigation .wp-block-navigation-item__content:active {
	color: var(--wp--preset--color--bs1-dark-red);
	transform: translateY(0);
	opacity: 0.85;
}

.bs1-header .wp-block-navigation .wp-block-navigation-item__content:active::after {
	transform: scaleX(1);
}

.bs1-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
.bs1-header .wp-block-navigation .current_page_item > .wp-block-navigation-item__content,
.bs1-header .wp-block-navigation .current-menu-parent > .wp-block-navigation-item__content,
.bs1-header .wp-block-navigation .current_page_parent > .wp-block-navigation-item__content,
.bs1-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content,
.bs1-header .wp-block-navigation .current-page-ancestor > .wp-block-navigation-item__content {
	color: var(--wp--preset--color--bs1-red);
	font-weight: 600;
}

.bs1-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content::after,
.bs1-header .wp-block-navigation .current_page_item > .wp-block-navigation-item__content::after,
.bs1-header .wp-block-navigation .current-menu-parent > .wp-block-navigation-item__content::after,
.bs1-header .wp-block-navigation .current_page_parent > .wp-block-navigation-item__content::after,
.bs1-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content::after,
.bs1-header .wp-block-navigation .current-page-ancestor > .wp-block-navigation-item__content::after {
	transform: scaleX(1);
}

/* ------------------------------------------------
   Smooth scroll
   ------------------------------------------------ */
html {
	scroll-behavior: smooth;
}

/* ------------------------------------------------
   Ensure full-width sections bleed
   ------------------------------------------------ */
.wp-site-blocks > * + * {
	margin-top: 0;
}

/* ------------------------------------------------
   Blog listing page — hero
   ------------------------------------------------ */
.bs1-blog-hero {
	min-height: 70vh;
}

/* ------------------------------------------------
   Blog listing — post cards
   ------------------------------------------------ */
.bs1-blog-card {
	border-radius: 8px;
	overflow: hidden;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
	will-change: transform, box-shadow;
}

.bs1-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.bs1-blog-card .wp-block-post-featured-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.bs1-blog-card .wp-block-post-title a {
	color: #111111;
	text-decoration: none;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

.bs1-blog-card .wp-block-post-title a:hover {
	color: #CC1B1B;
	text-shadow: 0 0 8px rgba(204, 27, 27, 0.15);
}

.bs1-blog-card .wp-block-post-excerpt__more-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	color: #CC1B1B;
	text-decoration: none;
}

.bs1-blog-card .wp-block-post-excerpt__more-link:hover {
	color: #A01616;
}

/* ------------------------------------------------
   Blog single — post tags
   ------------------------------------------------ */
.bs1-post-tags {
	font-family: 'Montserrat', sans-serif;
}

.bs1-post-tags a {
	color: #666666;
	text-decoration: none;
}

.bs1-post-tags a:hover {
	color: #CC1B1B;
}

/* ------------------------------------------------
   Contact page — hero
   ------------------------------------------------ */
.bs1-contact-hero {
	min-height: 70vh;
}

/* ------------------------------------------------
   Contact page — contact info list
   ------------------------------------------------ */
.bs1-contact-info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bs1-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.2s ease;
}

.bs1-contact-item:hover .bs1-contact-icon {
	background-color: rgba(204, 27, 27, 0.05);
	transform: scale(1.05);
}

.bs1-contact-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bs1-contact-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #CC1B1B;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs1-contact-icon svg {
	width: 22px;
	height: 22px;
}

.bs1-contact-content {
	flex: 1;
}

.bs1-contact-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #111111;
	margin: 0 0 4px;
}

.bs1-contact-value {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

.bs1-contact-value a {
	color: #666666;
	text-decoration: none;
	transition: color 0.2s ease;
}

.bs1-contact-value a:hover {
	color: #CC1B1B;
}

/* ------------------------------------------------
   Contact page — form
   ------------------------------------------------ */
.bs1-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bs1-form-row {
	display: flex;
	gap: 16px;
}

.bs1-form-row .bs1-form-group {
	flex: 1;
}

.bs1-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bs1-form-group label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.8rem;
	color: #333333;
}

.bs1-form-group input,
.bs1-form-group textarea {
	padding: 12px 14px;
	border: 1px solid #dddddd;
	border-radius: 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	color: #333333;
	background-color: #f9f9f9;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.bs1-form-group input:focus,
.bs1-form-group textarea:focus {
	outline: none;
	border-color: #CC1B1B;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(204, 27, 27, 0.1);
}

.bs1-form-group input:hover,
.bs1-form-group textarea:hover {
	border-color: #bbbbbb;
}

.bs1-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.bs1-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.bs1-form-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #CC1B1B;
	flex-shrink: 0;
}

.bs1-form-checkbox label {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #666666;
	line-height: 1.4;
}

.bs1-submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background-color: #CC1B1B;
	color: #FFFFFF;
	border: none;
	border-radius: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	align-self: flex-start;
}

.bs1-submit-btn:hover {
	background-color: #A01616;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(204, 27, 27, 0.3);
}

.bs1-submit-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(204, 27, 27, 0.2);
}

.bs1-submit-btn span {
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

.bs1-submit-btn:hover span {
	transform: translateX(4px);
}

/* ------------------------------------------------
   Contact page — UK map & coverage
   ------------------------------------------------ */
.bs1-uk-map {
	width: 100%;
	max-width: 100px;
	margin: 0 auto;
}

.bs1-uk-map svg {
	width: 100%;
	height: auto;
}

.bs1-coverage-items {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
}

.bs1-coverage-item {
	flex: 1;
	text-align: center;
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs1-coverage-item:hover {
	transform: translateY(-4px);
}

.bs1-coverage-item:hover .bs1-coverage-icon svg {
	transform: scale(1.1);
}

.bs1-coverage-item + .bs1-coverage-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #dddddd;
}

.bs1-coverage-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs1-coverage-icon svg {
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
}

.bs1-coverage-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #111111;
	margin: 0;
}

.bs1-coverage-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75rem;
	color: #666666;
	line-height: 1.4;
	margin: 0;
}

/* ------------------------------------------------
   Culture page — hero
   ------------------------------------------------ */
.bs1-culture-hero {
	min-height: 70vh;
}

/* ------------------------------------------------
   Culture page — principles list
   ------------------------------------------------ */
.bs1-culture-principles {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bs1-culture-principle {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.2s ease, padding-left 0.2s ease;
	border-radius: 8px;
}

.bs1-culture-principle:hover {
	background-color: rgba(204, 27, 27, 0.03);
	padding-left: 12px;
}

.bs1-culture-principle:first-child {
	padding-top: 0;
}

.bs1-culture-principle:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bs1-culture-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs1-culture-icon svg {
	width: 40px;
	height: 40px;
}

.bs1-culture-content {
	flex: 1;
}

.bs1-culture-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #111111;
	margin: 0 0 4px;
}

.bs1-culture-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.85rem;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------
   Culture page — Our People dark section
   ------------------------------------------------ */
.bs1-people-stats {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	gap: 24px;
}

.bs1-people-stat {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex: 1;
	padding: 24px 16px;
	border-left: 2px solid rgba(204, 27, 27, 0.3);
	transition: background-color 0.3s ease;
	border-radius: 8px;
}

.bs1-people-stat:hover {
	background-color: rgba(204, 27, 27, 0.08);
}

.bs1-people-stat:first-child {
	border-left: none;
}

.bs1-people-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs1-people-icon svg {
	width: 40px;
	height: 40px;
}

.bs1-people-stat-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #FFFFFF;
	margin: 0;
}

/* ------------------------------------------------
   Culture page — Our Commitment grid
   ------------------------------------------------ */
.bs1-commitment-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.bs1-commitment-item {
	flex: 1;
	text-align: center;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	position: relative;
}

.bs1-commitment-item + .bs1-commitment-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #dddddd;
}

.bs1-commitment-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #111111;
	margin: 0;
}

.bs1-commitment-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------
   Services hero — page-specific min-height
   ------------------------------------------------ */
.bs1-services-hero {
	min-height: 70vh;
}

/* ------------------------------------------------
   About Us — hero breadcrumb & short red divider
   ------------------------------------------------ */
.bs1-about-hero .wp-block-cover__inner-container > .wp-block-group {
	padding-top: 60px;
}

.bs1-short-divider {
	width: 40px !important;
	border: none !important;
	height: 3px !important;
	background-color: #CC1B1B !important;
}

/* ------------------------------------------------
   About Us — left-aligned section heading decorator
   ------------------------------------------------ */
.bs1-section-heading-left::after {
	margin-left: 0;
}

/* ------------------------------------------------
   About Us — Our Story grid (2 rows × 3 cols)
   ------------------------------------------------ */
.bs1-story-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	background-color: #1E1E1E;
	border-radius: 8px;
	overflow: hidden;
}

.bs1-story-item {
	padding: 32px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	border-right: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bs1-story-item:nth-child(3n) {
	border-right: none;
}

.bs1-story-item:nth-child(n+4) {
	border-bottom: none;
}

.bs1-story-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #FFFFFF;
	margin: 0;
}

.bs1-story-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------
   About Us — Our Approach steps
   ------------------------------------------------ */
.bs1-approach-steps {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 0;
}

.bs1-approach-step {
	flex: 1;
	text-align: center;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.bs1-step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #1E1E1E;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs1-approach-step:hover .bs1-step-number {
	background-color: #CC1B1B;
	transform: scale(1.1);
}

.bs1-approach-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #111111;
	margin: 0;
}

.bs1-approach-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

.bs1-step-arrow {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #CC1B1B;
	padding-top: 14px;
	flex-shrink: 0;
}

/* ------------------------------------------------
   About Us — Our Values grid (5 items)
   ------------------------------------------------ */
.bs1-values-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.bs1-value-item {
	flex: 1;
	text-align: center;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	position: relative;
}

.bs1-value-item + .bs1-value-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #dddddd;
}

.bs1-value-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #111111;
	margin: 0;
}

.bs1-value-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------
   Service list — vertical items with icons
   ------------------------------------------------ */
.bs1-service-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bs1-service-list-item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid #e0e0e0;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
	cursor: pointer;
	border-radius: 8px;
}

.bs1-service-list-item:first-child {
	padding-top: 0;
}

.bs1-service-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bs1-service-list-item:hover {
	background-color: rgba(204, 27, 27, 0.03);
	box-shadow: 0 2px 12px rgba(204, 27, 27, 0.08);
}

.bs1-service-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs1-service-icon svg {
	width: 48px;
	height: 48px;
}

.bs1-service-content {
	flex: 1;
}

.bs1-service-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #111111;
	margin: 0 0 6px;
}

.bs1-service-desc {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

.bs1-service-arrow {
	flex-shrink: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #CC1B1B;
	transition: transform 0.2s ease;
}

.bs1-service-list-item:hover .bs1-service-arrow {
	transform: translateX(4px);
}

/* Badge (e.g. "NEW") */
.bs1-service-badge {
	display: inline-block;
	padding: 2px 8px;
	background-color: #CC1B1B;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 2px;
	vertical-align: middle;
	margin-left: 8px;
}

/* ------------------------------------------------
   About Us — responsive adjustments
   ------------------------------------------------ */
@media (max-width: 960px) {
	.bs1-story-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bs1-story-item {
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	/* Right border on odd items in 2-col layout */
	.bs1-story-item:nth-child(2n-1) {
		border-right: 1px solid rgba(255,255,255,0.1);
	}

	/* No bottom border on last row (items 5 and 6) */
	.bs1-story-item:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.bs1-approach-steps {
		flex-wrap: wrap;
		justify-content: center;
	}

	.bs1-approach-step {
		flex-basis: 45%;
		margin-bottom: 32px;
	}

	.bs1-step-arrow {
		display: none;
	}

	.bs1-values-grid {
		flex-wrap: wrap;
	}

	.bs1-value-item {
		flex-basis: 40%;
		margin-bottom: 32px;
	}

	.bs1-value-item::before {
		display: none;
	}
}

@media (max-width: 600px) {
	.bs1-story-grid {
		grid-template-columns: 1fr;
	}

	.bs1-story-item {
		border-right: none;
	}

	.bs1-story-item:nth-child(2n-1) {
		border-right: none;
	}

	.bs1-story-item:nth-last-child(-n+2) {
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.bs1-story-item:last-child {
		border-bottom: none;
	}

	.bs1-approach-step {
		flex-basis: 100%;
	}

	.bs1-value-item {
		flex-basis: 100%;
	}

	.bs1-people-stats {
		flex-direction: column;
	}

	.bs1-people-stat {
		border-left: none;
		border-bottom: 1px solid rgba(204, 27, 27, 0.3);
		padding-bottom: 24px;
	}

	.bs1-people-stat:last-child {
		border-bottom: none;
	}

	.bs1-commitment-grid {
		flex-wrap: wrap;
	}

	.bs1-commitment-item {
		flex-basis: 45%;
		margin-bottom: 32px;
	}

	.bs1-commitment-item::before {
		display: none;
	}

	.bs1-form-row {
		flex-direction: column;
		gap: 16px;
	}

	.bs1-coverage-items {
		flex-wrap: wrap;
	}

	.bs1-coverage-item {
		flex-basis: 45%;
	}

	.bs1-coverage-item::before {
		display: none;
	}
}
