/**
 * Universal Hero contact buttons — v3.9.3
 */

.amf-universal-hero-contact {
	margin: 0 0 1.25rem;
}

.amf-universal-hero-contact__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.amf-universal-hero-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.3;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 4px 14px rgba(26, 26, 26, 0.08);
}

.amf-universal-hero-contact__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(26, 26, 26, 0.12);
}

.amf-universal-hero-contact__btn--call {
	background: #f77e2d;
	border: 2px solid #f77e2d;
	color: #fff;
}

.amf-universal-hero-contact__btn--call:hover {
	background: #e06a18;
	border-color: #e06a18;
	color: #fff;
}

.amf-universal-hero-contact__btn--whatsapp {
	background: #25d366;
	border: 2px solid #25d366;
	color: #fff;
}

.amf-universal-hero-contact__btn--whatsapp:hover {
	background: #1fb855;
	border-color: #1fb855;
	color: #fff;
}

.amf-universal-hero-contact__icon {
	flex-shrink: 0;
}

/* Orange hero backgrounds (homepage) */
.amf-home-hero .amf-universal-hero-contact__btn--call {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.9);
	color: #fff;
}

.amf-home-hero .amf-universal-hero-contact__btn--call:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
	color: #fff;
}

@media (max-width: 782px) {
	.amf-universal-hero-contact__inner {
		flex-direction: column;
	}

	.amf-universal-hero-contact__btn {
		width: 100%;
	}
}

@media (min-width: 783px) and (max-width: 1024px) {
	.amf-universal-hero-contact__inner {
		flex-wrap: wrap;
	}
}
