/*
Theme Name: Breadfast
Theme URI: https://breadfast.com
Description: A modern WordPress block theme for the Breadfast marketing website and blog. Clean, fast, and built with Full Site Editing.
Version: 2.23.5
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
Author: Breadfast
Author URI: https://breadfast.com
Text Domain: breadfast
Tags: blog, one-column, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, wide-blocks
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ----------------------------------------------------------------
   Sections — Remove vertical padding
   ---------------------------------------------------------------- */
.bf-section {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.bf-section--careers,
.bf-section--blog {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

/* ----------------------------------------------------------------
   Sticky Header
   ---------------------------------------------------------------- */
.sticky-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: transparent;
	transition: background-color 0.25s ease;
}

.sticky-header.is-scrolled {
	background: rgba(255, 255, 255, 0.97) !important;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

/* Navigation spacing — override global gap:0 from theme.json blockGap */
nav.wp-block-navigation.is-layout-flex {
	gap: 2rem !important;
}

.wp-block-navigation .wp-block-navigation__container {
	gap: 2rem !important;
}

/* Header nav link styles */
.sticky-header .wp-block-navigation a {
	color: var(--wp--preset--color--secondary-dark) !important;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
}

.sticky-header .wp-block-navigation a:hover {
	color: var(--wp--preset--color--primary) !important;
}

/* Navigation dropdown (Services submenu) */
.wp-block-navigation-submenu {
	position: relative;
}

.wp-block-navigation .wp-block-navigation__submenu-container {
	background: #fff !important;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0 !important;
	min-width: 200px;
	margin-top: 0 !important;
	padding-top: 1rem !important;
}

/* Invisible bridge so hover doesn't break crossing the gap */
.wp-block-navigation .wp-block-navigation__submenu-container::before {
	content: '';
	position: absolute;
	top: -0.75rem;
	left: 0;
	right: 0;
	height: 0.75rem;
}

.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	padding: 0.6rem 1.25rem !important;
	font-weight: 600 !important;
	color: var(--wp--preset--color--dark) !important;
	font-size: 0.9375rem !important;
}

.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	background: #f3f4f5 !important;
	color: var(--wp--preset--color--dark) !important;
}

/* Dropdown arrow indicator */
.wp-block-navigation-submenu__toggle::after {
	margin-left: 0.25rem;
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.wp-element-button,
.wp-block-button__link {
	transition: background-color 0.2s ease, transform 0.15s ease;
	padding: 0.75rem 2rem;
}

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

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

/* ----------------------------------------------------------------
   Blog Post Grid
   ---------------------------------------------------------------- */
.wp-block-post-template.is-layout-grid {
	gap: 2rem;
}

/* ----------------------------------------------------------------
   Blog Post Card
   ---------------------------------------------------------------- */
.bf-post-card {
	border-radius: 16px;
	overflow: hidden;
	background: var(--wp--preset--color--white);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bf-post-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.bf-post-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.bf-post-card .bf-post-card__content {
	padding: 1.5rem;
}

.bf-post-card__category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--primary);
	margin-bottom: 0.5rem;
}

.bf-post-card__title {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.bf-post-card__title a {
	color: var(--wp--preset--color--dark);
	text-decoration: none;
}

.bf-post-card__title a:hover {
	color: var(--wp--preset--color--primary);
}

.bf-post-card__meta {
	font-size: 0.8125rem;
	color: var(--wp--preset--color--muted);
}

/* ----------------------------------------------------------------
   Section Spacing
   ---------------------------------------------------------------- */
.bf-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

@media (max-width: 768px) {
	.bf-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

/* ----------------------------------------------------------------
   Feature Card
   ---------------------------------------------------------------- */
.bf-feature-card {
	text-align: center;
	padding: 2rem 1.5rem;
}

.bf-feature-card img {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
}

/* ----------------------------------------------------------------
   Hero Section — pull up behind transparent header
   ---------------------------------------------------------------- */
.bf-hero {
	min-height: 500px;
	display: flex;
	align-items: center;
	margin-top: -80px;
	padding-top: calc(5rem + 80px) !important;
}

@media (max-width: 768px) {
	.bf-hero {
		min-height: auto;
		margin-top: -70px;
		padding-top: calc(3rem + 70px) !important;
	}
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.bf-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bf-footer a:hover {
	color: var(--wp--preset--color--white);
}

.bf-footer-links {
	list-style: none !important;
	padding-left: 0 !important;
}

.bf-footer-links li {
	list-style: none;
}


.bf-footer-badges img {
	height: 40px;
	width: auto;
}

/* ----------------------------------------------------------------
   Category Tabs (Blog)
   ---------------------------------------------------------------- */
.bf-category-tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.bf-category-tabs a {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border-radius: 100px;
	background: var(--wp--preset--color--light-gray);
	color: var(--wp--preset--color--dark);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.bf-category-tabs a:hover,
.bf-category-tabs a.is-active {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* ----------------------------------------------------------------
   Blog Pagination
   ---------------------------------------------------------------- */
.wp-block-query-pagination {
	gap: 0.5rem;
}

.wp-block-query-pagination-numbers .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--wp--preset--color--dark);
	background: var(--wp--preset--color--light-gray);
	transition: all 0.2s ease;
}

.wp-block-query-pagination-numbers .page-numbers:hover {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

.wp-block-query-pagination-numbers .page-numbers.current {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wp--preset--color--primary);
	text-decoration: none;
}

.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
	text-decoration: underline;
}

/* ----------------------------------------------------------------
   Outline Button (Service Sections)
   ---------------------------------------------------------------- */
.bf-outline-btn .wp-block-button__link {
	background: transparent !important;
	color: #a3007c !important;
	border: 1px solid #a3007c !important;
	border-radius: 8px !important;
	font-weight: 400;
	transition: all 0.2s ease;
}

.bf-outline-btn .wp-block-button__link:hover {
	background: #a3007c !important;
	color: #fff !important;
}

/* ----------------------------------------------------------------
   Section Title with Arrow
   ---------------------------------------------------------------- */
.bf-section-title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.bf-section-title img {
	width: 24px;
	height: 24px;
}

/* ----------------------------------------------------------------
   Delivery Tips Card
   ---------------------------------------------------------------- */
.bf-delivery-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.5rem;
	padding: 1.75rem 2rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bf-delivery-card img {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Polaroid Effect (Travel Section)
   ---------------------------------------------------------------- */
.bf-polaroid-container {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bf-polaroid {
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	width: 270px;
	position: absolute;
}

.bf-polaroid img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 8px;
}

.bf-polaroid figcaption {
	text-align: center;
	padding: 0.75rem 0 0.25rem;
	font-family: var(--wp--preset--font-family--faro);
	font-size: 0.875rem;
	color: var(--wp--preset--color--dark);
}

.bf-polaroid-left {
	transform: rotate(-10deg);
	left: 15%;
	z-index: 2;
}

.bf-polaroid-right {
	transform: rotate(7deg);
	right: 15%;
	top: 85px;
	z-index: 3;
}

@media (max-width: 768px) {
	.bf-polaroid-container {
		min-height: 350px;
	}

	.bf-polaroid {
		width: 180px;
	}

	.bf-polaroid-left {
		left: 5%;
	}

	.bf-polaroid-right {
		right: 5%;
	}
}

/* ----------------------------------------------------------------
   Career Card
   ---------------------------------------------------------------- */
.bf-career-card {
	display: flex;
	flex-direction: row;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: box-shadow 0.2s ease;
	background: var(--wp--preset--color--white);
}

.bf-career-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bf-career-card img {
	width: 33%;
	min-height: 200px;
	object-fit: cover;
}

.bf-career-card .bf-career-card__body {
	padding: 1.5rem;
	flex: 1;
}

@media (max-width: 768px) {
	.bf-career-card {
		flex-direction: column;
	}

	.bf-career-card img {
		width: 100%;
		min-height: 180px;
	}
}

/* ----------------------------------------------------------------
   Blog Card (Old Style)
   ---------------------------------------------------------------- */
.bf-blog-card {
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: box-shadow 0.2s ease;
	background: var(--wp--preset--color--white);
}

.bf-blog-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bf-blog-card .wp-block-post-featured-image {
	border-radius: 25px 25px 0 0;
	overflow: hidden;
}

.bf-blog-card .wp-block-post-featured-image img {
	height: 260px;
	object-fit: cover;
}

.bf-read-more {
	color: var(--wp--preset--color--primary) !important;
	text-decoration: none;
	font-weight: 500;
}

.bf-read-more:hover {
	text-decoration: underline;
}

/* ----------------------------------------------------------------
   App Store Badges
   ---------------------------------------------------------------- */
.bf-app-badges .wp-block-image {
	width: auto !important;
	flex: none !important;
}

.bf-app-badges .wp-block-image img {
	height: 48px !important;
	width: auto !important;
	max-width: none !important;
}

/* ----------------------------------------------------------------
   RTL Overrides (Arabic — Faro Sad variants)
   ---------------------------------------------------------------- */
html[dir="rtl"] {
	--wp--preset--font-family--faro: 'Faro Web Sad', sans-serif;
}

@font-face {
	font-family: 'Faro Web Sad';
	src: url('./assets/fonts/faro/FaroWeb-LightSad.woff2') format('woff2'),
	     url('./assets/fonts/faro/FaroWeb-LightSad.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Faro Web Sad';
	src: url('./assets/fonts/faro/FaroWeb-RegularSad.woff2') format('woff2'),
	     url('./assets/fonts/faro/FaroWeb-RegularSad.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Faro Web Sad';
	src: url('./assets/fonts/faro/FaroWeb-SemiBoldSad.woff2') format('woff2'),
	     url('./assets/fonts/faro/FaroWeb-SemiBoldSad.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Faro Web Sad';
	src: url('./assets/fonts/faro/FaroWeb-BoldSad.woff2') format('woff2'),
	     url('./assets/fonts/faro/FaroWeb-BoldSad.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Faro Web Sad';
	src: url('./assets/fonts/faro/FaroWeb-DisplaySad.woff2') format('woff2'),
	     url('./assets/fonts/faro/FaroWeb-DisplaySad.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* ----------------------------------------------------------------
   Products Showcase — Isometric Marquee Grid
   ---------------------------------------------------------------- */

/* Outer container: clips the rotated grid */
.bf-products-grid {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 16px;
}

/* Inner container: applies the isometric rotation */
.bf-products-grid__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 140%;
	transform: translate(-50%, -50%) rotate(-25deg);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Each horizontal row of product cards */
.bf-products-row {
	overflow: hidden;
	width: 100%;
}

/* The sliding track containing all tiles (duplicated for seamless loop) */
.bf-products-row__track {
	display: flex;
	gap: 12px;
	width: max-content;
	animation: bf-marquee 30s linear infinite;
	will-change: transform;
}

/* Reverse animation for alternating rows */
.bf-products-row--reverse .bf-products-row__track {
	animation-name: bf-marquee-reverse;
	animation-duration: 35s;
}

/* Individual product tile */
.bf-product-tile {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.bf-product-tile img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

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

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

/* Subtle edge gradient fade for "infinite" feel */
.bf-products-grid::before,
.bf-products-grid::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}

.bf-products-grid::before {
	left: 0;
	background: linear-gradient(to right, #ffffff, transparent);
}

.bf-products-grid::after {
	right: 0;
	background: linear-gradient(to left, #ffffff, transparent);
}

/* Accessibility: pause animations for reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	.bf-products-row__track {
		animation-play-state: paused;
	}
}

/* RTL: mirror the isometric rotation */
html[dir="rtl"] .bf-products-grid__inner {
	transform: translate(-50%, -50%) rotate(25deg);
}

/* Tablet responsive */
@media (max-width: 1024px) {
	.bf-products-grid {
		height: 400px;
	}

	.bf-product-tile {
		width: 100px;
		height: 100px;
		border-radius: 12px;
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	.bf-products-grid {
		height: 300px;
		margin-top: 2rem;
	}

	.bf-products-grid__inner {
		gap: 8px;
	}

	.bf-products-row__track {
		gap: 8px;
	}

	.bf-product-tile {
		width: 80px;
		height: 80px;
		border-radius: 10px;
		padding: 6px;
	}
}

/* ----------------------------------------------------------------
   Careers Page — Hero
   ---------------------------------------------------------------- */
.bf-careers-hero {
	position: relative;
	overflow: hidden;
}

.bf-careers-hero__img img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}

.bf-careers-hero__card {
	position: relative;
	margin-top: -3rem;
	z-index: 2;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.bf-careers-hero__card {
		margin-top: -2rem;
	}

	.bf-careers-hero__img img {
		max-height: 300px;
	}
}

/* ----------------------------------------------------------------
   Careers Page — Departments Grid
   ---------------------------------------------------------------- */
.bf-dept-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 1140px;
	margin: 0 auto;
}

.bf-dept-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	border-radius: 12px;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 900;
	font-size: 1.125rem;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	min-height: 100px;
}

.bf-dept-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.bf-dept-card__name {
	line-height: 1.3;
}

@media (max-width: 768px) {
	.bf-dept-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.bf-dept-grid {
		grid-template-columns: 1fr;
	}
}

/* ----------------------------------------------------------------
   Careers Page — Values Bento Grid
   ---------------------------------------------------------------- */
.bf-values-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 1rem;
}

.bf-values-header {
	background: var(--wp--preset--color--primary);
	color: #fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1.2;
}

.bf-value-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
}

.bf-value-card--wide {
	grid-column: span 1;
}

.bf-value-card--vertical {
	flex-direction: column;
}

.bf-value-card__body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.bf-value-card__title {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--wp--preset--color--primary);
	margin: 0 0 0.75rem;
}

.bf-value-card__desc {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--dark);
	margin: 0;
}

.bf-value-card__img {
	flex: 1;
	min-height: 180px;
}

.bf-value-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bf-values-logo {
	background: var(--wp--preset--color--secondary);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

/* Values grid — rearrange for the bento effect */
.bf-values-grid {
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: auto;
}

.bf-values-header {
	grid-column: 1;
	grid-row: 1;
}

.bf-value-card--wide {
	grid-column: 2 / 4;
	grid-row: 1;
}

.bf-values-grid > .bf-value-card:nth-child(3) {
	grid-column: 1 / 3;
	grid-row: 2;
}

.bf-values-grid > .bf-value-card:nth-child(4) {
	grid-column: 3;
	grid-row: 2 / 4;
}

.bf-values-grid > .bf-value-card:nth-child(5) {
	grid-column: 1;
	grid-row: 3 / 5;
}

.bf-values-logo {
	grid-column: 2;
	grid-row: 3;
}

.bf-values-grid > .bf-value-card:nth-child(7) {
	grid-column: 2 / 4;
	grid-row: 4;
}

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

	.bf-values-header,
	.bf-value-card--wide,
	.bf-values-grid > .bf-value-card:nth-child(3),
	.bf-values-grid > .bf-value-card:nth-child(4),
	.bf-values-grid > .bf-value-card:nth-child(5),
	.bf-values-logo,
	.bf-values-grid > .bf-value-card:nth-child(7) {
		grid-column: 1;
		grid-row: auto;
	}

	.bf-value-card {
		flex-direction: column;
	}
}

/* ----------------------------------------------------------------
   Careers Page — Job Openings
   ---------------------------------------------------------------- */
.bf-jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	max-width: 1140px;
	margin: 0 auto;
}

.bf-job-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	border-left: 4px solid #ccc;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease;
}

.bf-job-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bf-job-card__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin-bottom: 0.25rem;
	font-family: var(--wp--preset--font-family--faro);
}

.bf-job-card__title {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--wp--preset--color--dark);
	margin: 0 0 1rem;
}

.bf-job-card__count {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--wp--preset--color--dark);
	margin: 0 0 1.25rem;
}

.bf-job-card__btn {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 8px;
	color: var(--wp--preset--color--primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
}

.bf-job-card__btn:hover {
	background: var(--wp--preset--color--primary);
	color: #fff;
}

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

/* ----------------------------------------------------------------
   Deliver Page — Hero
   ---------------------------------------------------------------- */
.bf-deliver-hero {
	position: relative;
	min-height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: flex-end;
}

.bf-deliver-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.bf-deliver-hero__content {
	position: relative;
	z-index: 2;
	padding: 0 64px 90px;
	max-width: 700px;
}

.bf-deliver-hero__title {
	font-family: var(--wp--preset--font-family--faro);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.3px;
	color: #ffffff;
	margin: 0 0 1.25rem;
}

.bf-deliver-hero__subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	color: #ffffff;
	margin: 0 0 2.5rem;
}

.bf-deliver-hero__btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	background: var(--wp--preset--color--primary);
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.bf-deliver-hero__btn:hover {
	background: #9e0179;
	transform: translateY(-1px);
	color: #ffffff;
}

@media (max-width: 768px) {
	.bf-deliver-hero {
		min-height: 80vh;
	}

	.bf-deliver-hero__content {
		padding: 0 1.5rem 3rem;
	}

	.bf-deliver-hero__subtitle {
		margin-bottom: 1.5rem;
	}
}

/* ----------------------------------------------------------------
   Deliver Page — Requirements
   ---------------------------------------------------------------- */
.bf-deliver-req-grid {
	display: flex;
	justify-content: center;
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.bf-deliver-req-card {
	text-align: center;
	flex: 1 1 200px;
	max-width: 260px;
}

.bf-deliver-req-card__icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bf-deliver-req-card__icon img {
	max-width: 100%;
	max-height: 100%;
}

.bf-deliver-req-card__title {
	font-family: var(--wp--preset--font-family--faro);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wp--preset--color--dark);
	margin: 0;
	line-height: 1.3;
}

@media (max-width: 640px) {
	.bf-deliver-req-grid {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
}

/* ----------------------------------------------------------------
   Deliver Page — Steps
   ---------------------------------------------------------------- */
.bf-deliver-steps {
	display: flex;
	justify-content: center;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.bf-deliver-step {
	text-align: center;
	flex: 1 1 250px;
	max-width: 300px;
}

.bf-deliver-step__img {
	position: relative;
	width: 220px;
	height: 220px;
	margin: 0 auto 1.5rem;
}

.bf-deliver-step__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.bf-deliver-step__number {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: var(--wp--preset--color--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 800;
	font-size: 1.125rem;
}

.bf-deliver-step__title {
	font-family: var(--wp--preset--font-family--faro);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wp--preset--color--dark);
	margin: 0 0 0.75rem;
}

.bf-deliver-step__desc {
	font-size: 1rem;
	line-height: 1.5;
	color: #6f6f6f;
	margin: 0;
}

@media (max-width: 960px) {
	.bf-deliver-step__img {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 640px) {
	.bf-deliver-steps {
		flex-direction: column;
		align-items: center;
		gap: 2.5rem;
	}
}

/* ----------------------------------------------------------------
   Deliver Page — CTA Footer
   ---------------------------------------------------------------- */
.bf-deliver-cta {
	display: flex;
	min-height: 500px;
}

.bf-deliver-cta__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
}

.bf-deliver-cta__title {
	font-family: var(--wp--preset--font-family--faro);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--wp--preset--color--dark);
	margin: 0 0 2.5rem;
	line-height: 1.2;
	max-width: 400px;
}

.bf-deliver-cta__btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	background: var(--wp--preset--color--primary);
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
	align-self: flex-start;
}

.bf-deliver-cta__btn:hover {
	background: #9e0179;
	transform: translateY(-1px);
	color: #ffffff;
}

.bf-deliver-cta__img {
	flex: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
}

@media (max-width: 768px) {
	.bf-deliver-cta {
		flex-direction: column-reverse;
		min-height: auto;
	}

	.bf-deliver-cta__text {
		padding: 3rem 1.5rem;
	}

	.bf-deliver-cta__img {
		min-height: 300px;
	}

	.bf-deliver-cta__title {
		margin-bottom: 1.5rem;
	}
}

/* ----------------------------------------------------------------
   FAQ Page — Card Grid
   ---------------------------------------------------------------- */
.bf-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 1140px;
	margin: 0 auto;
}

.bf-faq-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease;
}

.bf-faq-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bf-faq-card__icon {
	flex-shrink: 0;
}

.bf-faq-card__icon img {
	width: 48px;
	height: 48px;
}

.bf-faq-card__question {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--wp--preset--color--dark);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.bf-faq-card__answer {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6f6f6f;
	margin: 0;
}

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

	.bf-faq-card {
		padding: 1.5rem;
	}
}

/* ----------------------------------------------------------------
   Contact Us Page
   ---------------------------------------------------------------- */
.bf-contact-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	max-width: 560px;
	margin: 0 auto;
}

.bf-contact-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 2.5rem;
	width: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bf-contact-card__title {
	font-family: var(--wp--preset--font-family--faro);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--wp--preset--color--dark);
	margin: 0 0 0.75rem;
}

.bf-contact-card__text {
	font-size: 1rem;
	color: #6f6f6f;
	margin: 0 0 1rem;
	line-height: 1.5;
}

.bf-contact-card__btn {
	display: inline-block;
	padding: 0.65rem 1.75rem;
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	background: var(--wp--preset--color--primary);
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.bf-contact-card__btn:hover {
	background: #9e0179;
	color: #fff;
}

.bf-contact-card__divider {
	height: 1px;
	background: #eee;
	margin: 1.5rem 0;
}

.bf-contact-card__copy {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: var(--wp--preset--color--primary);
	font-size: 1rem;
	position: relative;
}

.bf-contact-card__copy:hover {
	text-decoration: underline;
}

.bf-contact-card__tooltip {
	font-size: 0.75rem;
	font-weight: 400;
	color: #6f6f6f;
	white-space: nowrap;
}

.bf-contact-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.bf-contact-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--wp--preset--color--light-gray);
	color: var(--wp--preset--color--dark);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.bf-contact-social__link:hover {
	background: var(--wp--preset--color--primary);
	color: #fff;
}

@media (max-width: 640px) {
	.bf-contact-card {
		padding: 1.5rem;
	}
}
