/* stylelint-disable-next-line no-invalid-position-at-import-rule */
/* Global Styles
---------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
b,
strong {
	font-weight: var(--wp--custom--font-weight--bold);
}
/* Forms
--------------------------------------------- */
input,
select,
textarea,
.wp-block-search__input {
	background-color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--black);
	border-radius: 0;
	color: var(--wp--preset--color--black);
	font-family: var(--wp--preset--font-family--sans);
	font-size: var(--wp--preset--font-size--body);
	padding: 16px 24px;
	width: 100%;
}
input:focus,
textarea:focus {
	background-color: var(--wp--preset--color--white);
	outline: none;
}
input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}
input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
	-webkit-appearance: none;
}
::-moz-placeholder {
	color: var(--wp--preset--color--black);
	opacity: 0.5;
}
::placeholder {
	color: var(--wp--preset--color--black);
	opacity: 0.5;
}
code {
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	padding: 2px 7px;
	font-family: var(--wp--preset--font-family--geist-mono);
	font-size: 85%;
	white-space: normal; /* allows wrapping to next line */
	overflow-wrap: anywhere; /* wraps at safe boundaries */
	word-break: keep-all; /* never break inside a word */
}
/* ---------------------------------------------------------------------------- */
/* === Base Menu Links === */
.header-menu a {
	position: relative;
	color: currentColor;
	text-decoration: none;
	padding-bottom: 3px;
	transition: color 0.3s ease;
}
/* === Wavy Animated Underline === */
.header-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 4%27><path d=%27M0 2 Q5 0 10 2 T20 2%27 fill=%27transparent%27 stroke=%27currentColor%27 stroke-width=%271.4%27/></svg>")
		repeat-x;
	background-size: 20px 4px;
	animation: waveMove 1.5s linear infinite;
	opacity: 0.8;
	transition: all 0.3s ease;
}
@keyframes waveMove {
	from {
		background-position-x: 0;
	}
	to {
		background-position-x: 20px;
	}
}
/* === Hover: stop wave + solid underline + accent color === */
.header-menu a:hover {
	color: #d23669;
}
.header-menu a:hover::after {
	animation: none;
	background: currentColor;
	height: 2px;
	opacity: 1;
}
/* === Current (Active) Menu Item === */
.wp-block-navigation-item.current-menu-item > .wp-block-navigation-link a,
.wp-block-navigation-item.current-menu-item > a {
	color: #d23669; /* same accent color */
}
/* active underline is solid + color matched */
.wp-block-navigation-item.current-menu-item
	> .wp-block-navigation-link
	a::after,
.wp-block-navigation-item.current-menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	animation: none;
	opacity: 1;
}
/* prevent any font-weight or transform from other rules */
.wp-block-navigation-item.current-menu-item {
	font-weight: normal !important;
	transform: none !important;
}
/* ---------------------------------------------------------------------------- */
.services-section {
	padding: 6rem 2rem;
	/* background: #fafafa; */
	/* color: #222; */
	/* font-family: var(--wp--preset--font-family--system-ui, sans-serif); */
}
.services-container {
	/* max-width: 1200px;
	margin: 0 auto; */
}
.services-heading {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	font-weight: 700;
}
.services-intro {
	text-align: center;
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 3rem;
	color: #555;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 4rem;
}
.service-card {
	background: #fff;
	padding: 2rem;
	margin: 0;
	/* border-radius: 0.75rem; */
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.service-card:hover {
	transform: translateY(-5px);
	/* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); */
}
.service-card--xlarge {
	grid-row: span 2;
	background-color: #dbe7e4;
}
.service-card--large {
	grid-column: span 2;
	background-color: #faedcd;
}
.service-card--medium {
	grid-column: span 1;
	background-color: #e9edc9;
}
.service-card--small {
	grid-column: span 1;
	background-color: #fefae0;
}
@media (max-width: 768px) {
	.service-card--large,
	.service-card--medium,
	.service-card--small {
		grid-column: span 1;
	}
}
.service-title {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
	color: var(--wp--preset--color--black);
}
.service-description {
	font-size: 1rem;
	color: var(--wp--preset--color--black);
	margin-bottom: 1rem;
}
.service-list {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 0;
	color: var(--wp--preset--color--black);
}
.service-list li {
	margin-bottom: 0.4rem;
	line-height: 1.5;
}
.services-footer {
	text-align: center;
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	padding: 3rem 2rem;
	/* border-radius: 1rem; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.services-subtitle {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}
.services-benefits {
	list-style: none;
	padding: 0;
	margin: 0 auto 2rem;
	max-width: 700px;
	color: var(--wp--preset--color--white);
}
.services-benefits li {
	margin-bottom: 0.75rem;
}
.services-cta {
	background: #0073aa;
	color: #fff !important;
	padding: 0.9rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}
.services-cta:hover {
	background: #005d8a;
}
.wp-block-separator {
	border: 1px solid var(--wp--preset--color--black) !important;
}

.low-opacity-bg-text {
    position: absolute;
    top: 360px;
    opacity: 0.1;
}

@media (max-width: 420px) {
	.low-opacity-bg-text {
		top: 652px;
	}
	.low-opacity-bg-text .icon-container {
		width: 336px !important
	}
}