/* Contact Us — world map + office location cards (no Tailwind dependency) */

/* Desktop world map */
.devotel-locations-map {
	display: flex;
	justify-content: center;
	position: relative;
	width: 100%;
}

.devotel-locations-map__stage {
	position: relative;
	width: 100%;
	max-width: 1024px;
	height: 488px;
}

.devotel-locations-map__stage > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.devotel-locations-map .dev-marker {
	position: absolute;
	z-index: 10;
	width: 3.91%;
	height: 8.2%;
	cursor: pointer;
}

.devotel-locations-map .dev-marker[data-loc="americas"] {
	right: 67.38%;
	left: 28.71%;
	bottom: 62.09%;
	top: 29.71%;
}

.devotel-locations-map .dev-marker[data-loc="emea"] {
	right: 50%;
	left: 46.09%;
	bottom: 65.37%;
	top: 26.43%;
}

.devotel-locations-map .dev-marker[data-loc="mena"] {
	right: 41.41%;
	left: 54.69%;
	bottom: 55.74%;
	top: 36.07%;
}

.devotel-locations-map .dev-marker__dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #325fec;
	transform: translate(-50%, -50%);
}

.devotel-locations-map .dev-tooltip {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 52px;
	z-index: 20;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.devotel-locations-map .dev-marker.active .dev-tooltip {
	display: flex;
}

.devotel-locations-map .pulse {
	animation: devotel-locations-pulse 1500ms infinite;
}

@keyframes devotel-locations-pulse {
	0% {
		box-shadow: 0 0 0 0 #325fec;
	}

	100% {
		box-shadow: 0 0 0 17px rgb(50 95 236 / 0.01);
	}
}

.devotel-locations-map .tooltip-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 200px;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid rgb(0 0 0 / 0.08);
	background: #fff;
	box-sizing: border-box;
}

.devotel-locations-map .tooltip-content__flag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.devotel-locations-map .tooltip-content__flag img {
	display: block;
	width: 20px;
	height: 20px;
}

.devotel-locations-map .tooltip-content__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	width: 100%;
}

.devotel-locations-map .dev-location-country {
	color: #0f172b;
	text-align: center;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	white-space: nowrap;
}

.devotel-locations-map .dev-location-address {
	color: #45556c;
	text-align: center;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

/* Office location cards */
.bayway-locations {
	width: 100%;
	background: #f9fafb;
	padding: 96px 32px;
	box-sizing: border-box;
}

.bayway-locations__inner {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.bayway-locations-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 48px;
}

.bayway-locations-grid > .card-10 {
	flex: 1 1 280px;
	max-width: 360px;
	min-width: 260px;
}

@media (max-width: 768px) {
	.bayway-locations {
		padding: 0 16px 48px;
	}

	.bayway-locations-grid {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 32px;
		align-items: stretch;
		justify-content: flex-start;
	}

	.bayway-locations-grid > .card-10 {
		width: 100%;
		max-width: 520px;
		min-width: 0;
	}
}

/* Legacy snapshot markup if location widgets were not patched yet */
.elementor-element-f7c355e .flex.justify-center,
.devotel-cached-snapshot .elementor-element-f7c355e > .flex {
	display: flex !important;
	justify-content: center !important;
	position: relative !important;
	width: 100% !important;
}

.elementor-element-f7c355e .h-\[488px\],
.elementor-element-f7c355e .max-w-\[1024px\] {
	position: relative !important;
	width: 100% !important;
	max-width: 1024px !important;
	height: 488px !important;
}

.elementor-element-f7c355e .dev-marker {
	position: absolute !important;
	z-index: 10 !important;
	width: 3.91% !important;
	height: 8.2% !important;
	cursor: pointer !important;
}

.elementor-element-f7c355e .dev-marker[data-loc="americas"] {
	right: 67.38% !important;
	left: 28.71% !important;
	bottom: 62.09% !important;
	top: 29.71% !important;
}

.elementor-element-f7c355e .dev-marker[data-loc="emea"] {
	right: 50% !important;
	left: 46.09% !important;
	bottom: 65.37% !important;
	top: 26.43% !important;
}

.elementor-element-f7c355e .dev-marker[data-loc="mena"] {
	right: 41.41% !important;
	left: 54.69% !important;
	bottom: 55.74% !important;
	top: 36.07% !important;
}

.elementor-element-f7c355e .dev-tooltip {
	display: none !important;
	position: absolute !important;
	left: 50% !important;
	bottom: 52px !important;
	z-index: 20 !important;
	flex-direction: column !important;
	align-items: center !important;
	transform: translateX(-50%) !important;
}

.elementor-element-f7c355e .dev-marker.active .dev-tooltip {
	display: flex !important;
}

.elementor-element-f7c355e .object-contain {
	object-fit: contain !important;
}

.elementor-element-f7c355e .w-full {
	width: 100% !important;
}

.elementor-element-f7c355e .h-full {
	height: 100% !important;
}

.elementor-element-8ecf5a2,
.elementor-element-f7c355e {
	overflow: visible !important;
}
