/*
Theme Name: EgniTech One Child
Theme URI: https://egnitech.com/themes/egnitech-one-child
Author: Antigravity
Author URI: https://egnitech.com
Description: Child theme for EgniTech One.
Template: egnitech-one
Version: 1.0.1
Text Domain: egnitech-one-child
*/

/* ─── Global: Animations ─── */

@keyframes flowPulse {
	from {
		stroke-dashoffset: 24;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes flowPulseVertical {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 0 16px;
	}
}

@keyframes morphBlob {
	0% {
		border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
		transform: scale(1) translate(0, 0);
	}

	33% {
		border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
		transform: scale(1.05) translate(3%, -3%);
	}

	66% {
		border-radius: 50% 50% 60% 40% / 60% 40% 50% 60%;
		transform: scale(0.95) translate(-2%, 2%);
	}

	100% {
		border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
		transform: scale(1) translate(0, 0);
	}
}

@keyframes whyCardSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/* ─── Front Page: How It Works — Vertical Stepper ─── */

.how-it-works-section {
	position: relative;
	overflow: hidden;
}

.steps-flow-vertical {
	position: relative;
	max-width: 800px;
}

.steps-flow-v__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--60);
	padding-left: 0;
}

/* Shared: Vertical Dash Connector Pattern */
.v-connector-dash::before {
	content: "";
	position: absolute;
	width: 2.5px;
	background-image: linear-gradient(to bottom, var(--wp--preset--color--accent) 50%, transparent 50%);
	background-size: 100% 16px;
	/* 8px dash, 8px gap */
	opacity: 0.55;
	animation: flowPulseVertical 1s linear infinite;
	pointer-events: none;
	z-index: 0;
}

/* Animated dashed vertical connector line */
.steps-flow-v__list::before {
	top: 30px;
	bottom: 30px;
	left: 30px;
}

/* Each step: horizontal flex (number left, content right) */
.steps-flow-v__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: var(--wp--preset--spacing--40);
	max-width: none;
	text-align: left;
}

/* Number circle: circle with glow */
.steps-flow-v__number {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--wp--preset--color--accent);
	background: var(--wp--preset--color--base);
	box-shadow:
		0 0 15px color-mix(in srgb, var(--wp--preset--color--accent) 25%, transparent),
		0 0 30px color-mix(in srgb, var(--wp--preset--color--accent) 8%, transparent);
	color: var(--wp--preset--color--accent);
	font-weight: var(--wp--preset--font-weight--bold, 700);
	font-size: var(--wp--preset--font-size--large);
	font-family: var(--wp--preset--font-family--inter);
	position: relative;
	z-index: 1;
}

/* Content block */
.steps-flow-v__content {
	display: flex;
	flex-direction: column;
	padding-top: 8px;
}

.steps-flow-v__title {
	font-size: 1.25rem;
	font-weight: var(--wp--preset--font-weight--semibold, 600);
	margin-bottom: 8px;
	color: var(--wp--preset--color--contrast);
}

.steps-flow-v__desc {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--secondary);
	line-height: 1.6;
	margin: 0;
}

/* Image styling for this section */
.getting-started-image img {
	width: 100%;
	height: auto;
	box-shadow: 0 30px 60px color-mix(in srgb, var(--wp--preset--color--contrast) 15%, transparent);
}


/* Mobile adjustments */
@media (max-width: 782px) {
	.how-it-works-section .wp-block-columns {
		flex-direction: column !important;
		gap: var(--wp--preset--spacing--60) !important;
	}

	.how-it-works-section .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	.steps-flow-v__title {
		font-size: 1.15rem;
	}
}


/* On mobile, allow trust bar items to wrap in a 2x2 grid with uniform alignment */
@media (max-width: 600px) {
	.trust-bar-section.is-dark-only>.alignwide {
		display: grid !important;
		grid-template-columns: auto auto !important;
		justify-content: center !important;
		align-items: center !important;
		column-gap: var(--wp--preset--spacing--60) !important;
		row-gap: var(--wp--preset--spacing--40) !important;
	}
}

/* ─── Front Page: Hero Cover — Always Dark ─── */

/* Force hero cover to always appear dark regardless of light/dark mode */
.wp-block-cover.alignfull {
	--wp--preset--color--base: #0f0f0f !important;
	--wp--preset--color--contrast: #e8e8e8 !important;
	color: #e8e8e8 !important;
}

/* Always-dark overlay on the cover background span */
.wp-block-cover.alignfull .wp-block-cover__background {
	background-color: #0f0f0f !important;
}

/* Soften the paragraph beneath the H1 inside the video cover hero */
.wp-block-cover__inner-container .has-large-font-size {
	opacity: 0.85;
}

/* ─── Front Page: Quality Checklist SVG alignment ─── */

.wp-block-group svg[aria-hidden="true"] {
	flex-shrink: 0;
}

/* ─── Global: Dark/Light Specific Utilities ─── */

/** 
 * Force a section to remain "Dark Mode" themed even in light mode.
 * Effectively swaps the default base/contrast colors to their dark-mode equivalents.
 */
.is-dark-only {
	--wp--preset--color--base: #0f0f0f !important;
	--wp--preset--color--contrast: #e8e8e8 !important;
	background-color: var(--wp--preset--color--base) !important;
	color: var(--wp--preset--color--contrast) !important;
}


/**
 * Force dark text on accent-colored buttons within the hero cover.
 * Scoped to avoid breaking block validation on the button block itself.
 */
.wp-block-cover .wp-block-button__link.has-accent-background-color {
	color: #111111 !important;
}

/**
 * Specifically for the "View Product Catalog" secondary button.
 * Ensures high contrast with a whitish semi-transparent background.
 */
.wp-block-cover .wp-block-button__link:not(.has-background) {
	background-color: rgba(255, 255, 255, 0.92) !important;
	color: #111111 !important;
}

/* ─── Front Page: Industries Served Cloudy Background ─── */

.industries-served-section {
	position: relative;
	overflow: clip;
	/* clip avoids BFC side-effects from WP global-padding layout */
}

/* Base styling for the container to keep it behind content */
.industries-cloud-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
	margin: 0 !important;
	/* Forces the alignfull absolute container to stay centered */
}

/* Ensure the main content sits above the background */
.industries-served-section>.relative-content {
	position: relative;
	z-index: 1;
}

/* Individual Blobs */
.cloud-blob {
	position: absolute;
	filter: blur(80px);
	opacity: 0.25;
	/* Subtle in light mode */
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	animation: morphBlob 15s ease-in-out infinite alternate;
	mix-blend-mode: multiply;
	/* Helps blend on light bg */
}

/* Light mode blob colors (icy blue / soft teal) */
.cloud-blob.blob-1 {
	top: -10%;
	left: -10%;
	width: 50vw;
	height: 50vw;
	background: color-mix(in srgb, var(--wp--preset--color--accent) 40%, transparent);
	animation-delay: 0s;
}

.cloud-blob.blob-2 {
	top: 40%;
	right: -20%;
	width: 60vw;
	height: 60vw;
	background: color-mix(in srgb, #0056b3 40%, transparent);
	/* A sapphire-like blue */
	animation-delay: -5s;
}

.cloud-blob.blob-3 {
	bottom: -20%;
	left: 20%;
	width: 55vw;
	height: 55vw;
	background: color-mix(in srgb, var(--wp--preset--color--accent) 30%, transparent);
	animation-delay: -10s;
}

/* Dark mode specific blob styling */
.has-background-color-dark .cloud-blob {
	opacity: 0.35;
	/* Slightly more visible in dark mode for a neon glow effect */
	mix-blend-mode: screen;
	/* Screen looks better for glowing effects on dark bg */
	filter: blur(100px);
	/* Larger blur for diffuse glow */
}

.has-background-color-dark .cloud-blob.blob-1 {
	background: color-mix(in srgb, var(--wp--preset--color--accent) 70%, transparent);
}

.has-background-color-dark .cloud-blob.blob-2 {
	background: color-mix(in srgb, #0d47a1 70%, transparent);
	/* Deep sapphire */
}

.has-background-color-dark .cloud-blob.blob-3 {
	background: color-mix(in srgb, var(--wp--preset--color--accent) 50%, transparent);
}

/* Light Mode specific refinements for blobs (using data-scheme) */
[data-scheme="light"] .cloud-blob {
	opacity: 0.15;
	mix-blend-mode: multiply;
	filter: blur(60px);
}

[data-scheme="light"] .cloud-blob.blob-1 {
	background: color-mix(in srgb, var(--wp--preset--color--accent) 30%, transparent);
}

[data-scheme="light"] .cloud-blob.blob-2 {
	background: color-mix(in srgb, #3b82f6 20%, transparent);
	/* Brighter azure */
}

/* ─── Front Page: Industries Served — Flow Lines ─── */

/* Separator rule override — short centered bar */
.industries-served-rule {
	width: 60px;
	border-bottom: 3px solid var(--wp--preset--color--accent);
	margin: var(--wp--preset--spacing--20) auto var(--wp--preset--spacing--40);
}

/* Flow container */
.industries-flow {
	position: relative;
	max-width: 900px;
	margin: var(--wp--preset--spacing--80) auto 0;
	/* Ensure children inherit stroke properties if not specified */
	stroke: var(--wp--preset--color--accent);
}

/* SVG connector layer */
.industries-flow__svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Enhanced visibility for dashed connector paths */
.industries-flow__path {
	stroke-dasharray: 6 6;
	animation: flowPulse 4s linear infinite;
	/* Smoother pulse */
	stroke-width: 2.5px;
}

/* Node circle and icons: uniform stroke thickness */
.industries-flow__node circle,
.industries-flow svg path:not(.industries-flow__path) {
	stroke-width: 2.5px;
}

/* Label overlay */
.industries-flow__labels {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.industries-flow__item {
	position: absolute;
	text-align: center;
	max-width: 220px;
}

.industries-flow__title {
	display: block;
	font-weight: var(--wp--preset--font-weight--semibold, 600);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--contrast);
	margin-bottom: 4px;
}

.industries-flow__desc {
	display: block;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--secondary);
	line-height: 1.45;
}

/* Desktop-only positioning for the SVG flow nodes */
@media (min-width: 783px) {

	/* Hide mobile vertical connector on desktop */
	.industries-flow__labels::before {
		display: none;
	}

	/* Vertical position shared classes */
	.industries-flow__item--top {
		top: -20%;
	}

	.industries-flow__item--bottom {
		top: 75%;
	}

	/* Side/Horizontal position unique classes */
	.industries-flow__item--1 {
		left: 6%;
	}

	.industries-flow__item--2 {
		left: 28%;
	}

	.industries-flow__item--3 {
		left: 51%;
	}

	.industries-flow__item--4 {
		left: 71%;
	}
}

/* ─── Industries Served: Icon visibility ─── */

/* On desktop the main SVG handles icons — hide inline ones */
@media (min-width: 783px) {
	.industries-flow__icon {
		display: none;
	}

	/* On desktop, .industries-flow__text wrapper is transparent */
	.industries-flow__text {
		display: contents;
	}
}

/* ─── Industries Served: Mobile Vertical Timeline ─── */
@media (max-width: 782px) {

	/* Hide the desktop SVG diagram */
	.industries-flow__svg {
		display: none;
	}

	/* Labels container becomes a vertical timeline strip */
	.industries-flow__labels {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: var(--wp--preset--spacing--60);
		padding-left: 0;
	}

	/* Animated dashed vertical connector line */
	.industries-flow__labels::before {
		top: 28px;
		bottom: 28px;
		left: 28px;
	}

	/* Each timeline item: horizontal flex (icon left, text right) */
	.industries-flow__item {
		position: relative;
		display: flex;
		align-items: flex-start;
		gap: var(--wp--preset--spacing--40);
		max-width: none;
		text-align: left;
	}

	/* Icon node: circle with glow */
	.industries-flow__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 56px;
		height: 56px;
		border-radius: 50%;
		border: 2.5px solid var(--wp--preset--color--accent);
		background: var(--wp--preset--color--surface, #0f0f0f);
		box-shadow:
			0 0 12px color-mix(in srgb, var(--wp--preset--color--accent) 35%, transparent),
			0 0 24px color-mix(in srgb, var(--wp--preset--color--accent) 15%, transparent);
		font-weight: var(--wp--preset--font-weight--bold, 700);
		position: relative;
		z-index: 1;
	}

	.industries-flow__icon svg {
		width: 26px;
		height: 26px;
	}

	/* Text block */
	.industries-flow__text {
		display: flex;
		flex-direction: column;
		padding-top: 4px;
	}

	.industries-flow__title {
		font-size: var(--wp--preset--font-size--small);
		margin-bottom: 6px;
	}

	.industries-flow__desc {
		font-size: var(--wp--preset--font-size--small);
	}
}


/* ─── Front Page: Who We Are Section ─── */

.who-we-are-section {
	position: relative;
	overflow: visible;
}


/* Responsive adjustments for Who We Are */
@media (max-width: 781px) {
	.who-we-are-section .wp-block-columns {
		flex-direction: column-reverse !important;
	}

	.who-we-are-section .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* ─── Contact Us Page: Global & Layout ─── */

.contact-hero-section {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 80px);
	/* Fill most of screen */
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: light-dark(#f8fafc, #0a0a0a);
	color: light-dark(#0f172a, #e8e8e8);
	transition: background-color 0.4s ease, color 0.4s ease;
}

/* Hide ghost P tags injected by WordPress that interfere with flex centering */
.contact-hero-section > p:empty,
.contact-hero-section > p:only-child:empty {
	display: none !important;
}

/* Fallback: hide any P that doesn't belong as a flex item here */
.contact-hero-section > p {
	display: none !important;
}

.contact-hero-section > .contact-hero-columns {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

[data-scheme="light"] .contact-hero-section {
	background-color: #f8fafc !important;
	color: #0f172a !important;
}

.contact-hero-columns {
	display: flex;
	align-items: center;
	padding-top: var(--wp--preset--spacing--80);
	padding-bottom: var(--wp--preset--spacing--80);
	gap: var(--wp--preset--spacing--80);
}

.contact-text-col {
	flex: 0 0 45%;
}

.contact-form-col {
	flex: 0 0 55%;
}

.contact-hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: light-dark(#0f172a, #ffffff);
}

[data-scheme="light"] .contact-hero-title {
	color: #0f172a !important;
}

.contact-hero-desc {
	font-size: 1.25rem;
	margin-top: var(--wp--preset--spacing--40);
	margin-bottom: var(--wp--preset--spacing--60);
	color: light-dark(#334155, #cbd5e1);
	line-height: 1.6;
}

[data-scheme="light"] .contact-hero-desc {
	color: #334155 !important;
}

.contact-hero-section .industries-cloud-bg {
	z-index: 0;
	opacity: 0.8;
}

.contact-text-col {
	position: relative;
	z-index: 2;
}

.contact-info-blocks {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--40);
	margin-top: var(--wp--preset--spacing--60);
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 1.05rem;
	color: light-dark(#1e293b, #e2e8f0);
	margin: 0;
}

[data-scheme="light"] .contact-info-item {
	color: #1e293b !important;
}

.contact-info-item svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: var(--wp--preset--color--accent);
	margin-top: 4px;
	filter: drop-shadow(0 0 8px color-mix(in srgb, var(--wp--preset--color--accent) 40%, transparent));
}

.contact-info-item a {
	color: var(--wp--preset--color--secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-info-item a:hover {
	color: var(--wp--preset--color--accent);
}

/* ─── Contact Us Page: Premium Form UI ─── */

.premium-contact-form {
	position: relative;
	z-index: 2;
	background: light-dark(rgba(255, 255, 255, 0.8), rgba(15, 15, 15, 0.65));
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid light-dark(rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0.08));
	border-top: 1px solid light-dark(rgba(15, 23, 42, 0.12), rgba(255, 255, 255, 0.15));
	border-radius: 16px;
	padding: 48px;
	box-shadow:
		0 24px 64px light-dark(rgba(15, 23, 42, 0.06), rgba(0, 0, 0, 0.4)),
		inset 0 1px 0 light-dark(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1));
	animation: whyCardSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-scheme="light"] .premium-contact-form {
	background: rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(15, 23, 42, 0.08) !important;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.06), inset 0 1px 0 #ffffff !important;
}

.pcf-row {
	margin-bottom: 24px;
}

.pcf-row-split {
	display: flex;
	gap: 20px;
}

.pcf-row-split .pcf-group {
	flex: 1;
}

.pcf-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.pcf-group label {
	font-size: 0.85rem;
	font-weight: 600;
	color: light-dark(#475569, #e2e8f0);
	/* Slate 600 in light mode */
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

[data-scheme="light"] .pcf-group label {
	color: #475569 !important;
}

.pcf-group input,
.pcf-group select,
.pcf-group textarea {
	width: 100%;
	box-sizing: border-box;
	/* Ensures width: 100% includes padding */
	background: light-dark(rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.4));
	border: 1px solid light-dark(rgba(15, 23, 42, 0.1), rgba(255, 255, 255, 0.12));
	border-radius: 8px;
	padding: 14px 16px;
	color: light-dark(#0f172a, #ffffff);
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
	outline: none;
	box-shadow: inset 0 2px 4px light-dark(rgba(15, 23, 42, 0.03), rgba(0, 0, 0, 0.2));
}

[data-scheme="light"] .pcf-group input,
[data-scheme="light"] .pcf-group select,
[data-scheme="light"] .pcf-group textarea {
	background: rgba(255, 255, 255, 0.8) !important;
	border-color: rgba(15, 23, 42, 0.1) !important;
	color: #0f172a !important;
}

.pcf-group select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 48px;
	cursor: pointer;
}

.pcf-group option {
	background-color: light-dark(#ffffff, #1a1a1a);
	color: light-dark(#0f172a, #ffffff);
}

.pcf-select-icon {
	position: absolute;
	right: 16px;
	bottom: 14px;
	width: 20px;
	height: 20px;
	color: light-dark(rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.5));
	pointer-events: none;
	transition: color 0.3s ease;
}

.pcf-group input::placeholder,
.pcf-group textarea::placeholder {
	color: light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.3));
}

.pcf-group input:hover,
.pcf-group select:hover,
.pcf-group textarea:hover {
	border-color: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.25));
}

.pcf-group input:focus,
.pcf-group select:focus,
.pcf-group textarea:focus {
	border-color: var(--wp--preset--color--accent);
	background: light-dark(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.6));
	box-shadow:
		inset 0 2px 4px light-dark(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2)),
		0 0 0 3px color-mix(in srgb, var(--wp--preset--color--accent) 25%, transparent);
}

.pcf-group select:focus~.pcf-select-icon {
	color: var(--wp--preset--color--accent);
}

/* Custom Checkbox */
.pcf-consent {
	margin-top: 32px;
	margin-bottom: 32px;
}

.pcf-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	user-select: none;
}

.pcf-checkbox-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.pcf-checkbox-custom {
	position: relative;
	top: 2px;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: light-dark(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.4));
	border: 1px solid light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.3));
	border-radius: 4px;
	transition: all 0.2s ease;
}

.pcf-checkbox-label:hover input~.pcf-checkbox-custom {
	border-color: light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.5));
}

.pcf-checkbox-label input:checked~.pcf-checkbox-custom {
	background: var(--wp--preset--color--accent);
	border-color: var(--wp--preset--color--accent);
	box-shadow: 0 0 12px color-mix(in srgb, var(--wp--preset--color--accent) 50%, transparent);
}

.pcf-checkbox-custom:after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 12px;
	border: solid light-dark(#ffffff, #111111);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.pcf-checkbox-label input:checked~.pcf-checkbox-custom:after {
	display: block;
}

.pcf-checkbox-text {
	font-size: 0.85rem;
	color: light-dark(#475569, rgba(255, 255, 255, 0.7));
	line-height: 1.5;
}

[data-scheme="light"] .pcf-checkbox-text {
	color: #475569 !important;
}

.pcf-checkbox-text a {
	color: light-dark(var(--wp--preset--color--accent), #ffffff);
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.2s ease;
}

.pcf-checkbox-text a:hover {
	color: var(--wp--preset--color--accent);
}

/* Submit Button */
.pcf-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 16px 32px;
	background: var(--wp--preset--color--accent);
	color: light-dark(#ffffff, #111111);
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 16px color-mix(in srgb, var(--wp--preset--color--accent) 25%, transparent);
}

.pcf-submit-btn svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.pcf-submit-btn:hover {
	background: light-dark(var(--wp--preset--color--contrast), #ffffff);
	color: light-dark(var(--wp--preset--color--base), #111111);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px color-mix(in srgb, var(--wp--preset--color--accent) 40%, transparent);
}

.pcf-submit-btn:hover svg {
	transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
	.contact-hero-columns {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 60px !important;
	}

	.contact-text-col,
	.contact-form-col {
		width: 100% !important;
		flex-basis: 100% !important;
	}

	.premium-contact-form {
		padding: 32px 20px;
		/* Slightly reduced horizontal padding on small screens */
	}

	.pcf-row-split {
		flex-direction: column;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.premium-contact-form {
		padding: 24px 16px;
		/* Further reduction for narrow mobile */
	}

	.contact-hero-title {
		font-size: 2rem;
	}

	.contact-hero-desc {
		font-size: 1.1rem;
	}
}

/* ─── Global: Button Hover Effects ─── */
.wp-block-button__link {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, filter 0.3s ease !important;
}

.wp-block-button__link:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--wp--preset--color--accent) 25%, transparent);
	filter: brightness(1.05);
}

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