/**
 * Site widgets — chrome controls, contact hub, back to top, reCAPTCHA hide.
 */

.grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.whatsapp-widget {
	display: none !important;
}

/* Shared blue chrome — header CTA, contact toggle */
.seorca-accent-btn {
	border: 1px solid rgba(76, 182, 236, 0.28);
	border-radius: 8px;
	background: rgba(12, 18, 28, 0.55);
	color: rgba(255, 255, 255, 0.88);
	box-shadow: none;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.seorca-accent-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	font-family: "Oxygen", sans-serif;
	font-weight: 500;
}

.seorca-accent-btn__inner {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.seorca-accent-btn__icon,
.seorca-accent-btn__chev {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #4cb6ec;
	transition: color 0.15s ease;
}

.seorca-accent-btn__text {
	font-family: "Oxygen", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	color: inherit;
}

.seorca-accent-btn__free,
.seorca-accent-btn__rest {
	color: inherit;
	font-weight: 500;
}

.seorca-accent-btn__chev {
	transition: transform 0.15s ease, color 0.15s ease;
}

.seorca-accent-btn:hover,
.seorca-accent-btn:focus-visible {
	border-color: rgba(76, 182, 236, 0.55);
	background: rgba(12, 18, 28, 0.85);
	color: #4cb6ec;
	box-shadow: none;
	outline: none;
}

.seorca-accent-btn:hover .seorca-accent-btn__icon,
.seorca-accent-btn:hover .seorca-accent-btn__chev,
.seorca-accent-btn:focus-visible .seorca-accent-btn__icon,
.seorca-accent-btn:focus-visible .seorca-accent-btn__chev {
	color: #4cb6ec;
}

.seorca-accent-btn:focus-visible {
	outline: 2px solid rgba(120, 200, 255, 0.45);
	outline-offset: 2px;
}

.seorca-contact-hub.is-open .seorca-contact-hub__toggle .seorca-accent-btn__chev {
	transform: rotate(180deg);
}

/* Header audit CTA — running light on the border */
.seorca-accent-btn--audit {
	position: relative;
	z-index: 0;
	overflow: hidden;
	border: 1px solid transparent;
	background: transparent;
	isolation: isolate;
	contain: paint;
}

.seorca-accent-btn--audit:hover,
.seorca-accent-btn--audit:focus-visible {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.seorca-accent-btn--audit::before {
	content: "";
	position: absolute;
	inset: -60%;
	z-index: -2;
	background: conic-gradient(
		from 0deg,
		transparent 0deg 300deg,
		rgba(76, 182, 236, 0.25) 318deg,
		rgba(76, 182, 236, 0.95) 336deg,
		rgba(250, 139, 7, 0.65) 348deg,
		transparent 360deg
	);
	animation: seorca-cta-border-run 2.6s linear infinite;
}

.seorca-accent-btn--audit::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: -1;
	border-radius: 7px;
	background: rgba(12, 18, 28, 0.96);
	pointer-events: none;
}

.seorca-accent-btn--audit .seorca-accent-btn__inner {
	position: relative;
	z-index: 1;
}

.seorca-accent-btn--audit:hover::before,
.seorca-accent-btn--audit:focus-visible::before {
	animation-duration: 4.5s;
}

@keyframes seorca-cta-border-run {
	to {
		transform: rotate(360deg);
	}
}

/* Floating contact — solid fill, static border */
.seorca-contact-hub__toggle.seorca-accent-btn--contact,
.seorca-contact-hub.is-open .seorca-accent-btn--contact {
	border: 1px solid rgba(76, 182, 236, 0.28);
	background: #0c121c;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.seorca-contact-hub__toggle.seorca-accent-btn--contact::before,
.seorca-contact-hub__toggle.seorca-accent-btn--contact::after {
	content: none;
	display: none;
}

.seorca-contact-hub__toggle.seorca-accent-btn--contact .seorca-accent-btn__inner {
	position: relative;
	z-index: 1;
	padding: 11px 16px;
}

.seorca-contact-hub__toggle.seorca-accent-btn--contact:hover,
.seorca-contact-hub__toggle.seorca-accent-btn--contact:focus-visible,
.seorca-contact-hub.is-open .seorca-accent-btn--contact {
	border-color: rgba(76, 182, 236, 0.55);
	background: #101826;
	color: #4cb6ec;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
	outline: none;
}

@media (max-width: 992px) {
	.seorca-site-widgets {
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.seorca-site-widgets.is-scroll-hidden {
		transform: translateY(calc(100% + 24px));
		opacity: 0;
		pointer-events: none !important;
	}

	.seorca-site-widgets.is-scroll-hidden > * {
		pointer-events: none !important;
	}

	.seorca-back-to-top {
		width: 32px;
		height: 32px;
	}

	.seorca-back-to-top svg {
		width: 15px;
		height: 15px;
	}

	.seorca-contact-hub {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(6px);
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	}

	.seorca-contact-hub.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	@media (max-width: 992px) {
		.seorca-site-widgets {
			transition: none;
		}
	}

	.seorca-accent-btn--audit::before,
	.seorca-contact-hub__toggle.seorca-accent-btn--contact::before {
		animation: none;
	}

	.seorca-contact-hub__panel {
		transition: none;
	}
}

/* Floating widgets stack — bottom right */
.seorca-site-widgets {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	pointer-events: none;
}

.seorca-site-widgets > * {
	pointer-events: auto;
}

@media (min-width: 993px) {
	.seorca-site-widgets {
		right: 20px;
		bottom: 20px;
	}
}

.seorca-back-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: rgba(12, 18, 28, 0.92);
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, color 0.15s ease, background 0.15s ease;
	backdrop-filter: blur(6px);
}

.seorca-back-to-top:hover,
.seorca-back-to-top:focus-visible {
	border: 0;
	background: rgba(12, 18, 28, 0.85);
	color: #4cb6ec;
	outline: none;
}

.seorca-back-to-top:focus-visible {
	outline: 2px solid rgba(120, 200, 255, 0.45);
	outline-offset: 2px;
}

.seorca-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* Contact hub — panel matches desktop nav dropdown */
.seorca-contact-hub {
	position: relative;
	z-index: 1;
}

.seorca-contact-hub__panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 14px);
	z-index: 10060;
	min-width: 300px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid rgba(76, 182, 236, 0.22);
	border-radius: 12px;
	background: linear-gradient(180deg, #0c121c 0%, #070b12 100%);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

.seorca-contact-hub__panel::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 100%;
	height: 14px;
}

.seorca-contact-hub.is-open .seorca-contact-hub__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.seorca-contact-hub__option {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 14px;
	border: 0;
	border-radius: 8px;
	background: none;
	color: rgba(255, 255, 255, 0.88);
	font-family: "Oxygen", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.seorca-contact-hub__option:hover,
.seorca-contact-hub__option:focus-visible {
	background: rgba(76, 182, 236, 0.1);
	color: #fff;
	outline: none;
}

.seorca-contact-hub__option-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s ease;
}

.seorca-contact-hub__option:hover .seorca-contact-hub__option-icon,
.seorca-contact-hub__option:focus-visible .seorca-contact-hub__option-icon {
	color: #fff;
}

.seorca-accent-btn--contact .seorca-accent-btn__text {
	font-size: 14px;
}
