/* Service Area Map — v1.0.0 */

.sam-section {
	font-family: inherit;
}

/* ---- Map canvas ---- */
.sam-map-canvas {
	width: 100%;
	height: 520px;
	display: block;
}

/* ---- No key notice ---- */
.sam-no-key-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a2130;
	color: #e8dcc8;
	font-size: 13px;
	text-align: center;
	padding: 20px;
	height: 60px;
}

/* ============================================================
   Primary bar — bold, dark, uppercase (like the black bar)
   ============================================================ */

.sam-primary-bar {
	display: block;
	background: #111827;
	padding: 14px 32px;
	line-height: 1.8;
	text-align: center;
}

.sam-area-primary {
	display: inline;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
}

.sam-area-primary a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.sam-area-primary a:hover {
	color: #c9a96e;
}

/* ============================================================
   Secondary bar — lighter, smaller (like the white bar)
   ============================================================ */

.sam-secondary-bar {
	display: block;
	background: #ffffff;
	padding: 12px 32px;
	line-height: 1.8;
	text-align: center;
}

.sam-area-secondary {
	display: inline;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #1a56a0;
}

.sam-area-secondary a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.sam-area-secondary a:hover {
	color: #c9a96e;
}

/* ---- Separator dot ---- */
.sam-sep {
	display: inline;
	opacity: 0.5;
	user-select: none;
	font-size: 14px;    /* independent default — overridden per-bar via Elementor slider */
	vertical-align: middle;
	line-height: 1;
}

.sam-primary-bar .sam-sep   { font-size: 14px; }
.sam-secondary-bar .sam-sep { font-size: 13px; }

/* ---- Dot marker (unused in bar layout, kept for JS info windows) ---- */
.sam-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4a7abf;
	flex-shrink: 0;
	vertical-align: middle;
	margin-right: 4px;
}

/* ---- Info window (Google Maps popup) ---- */
.sam-info {
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 2px 4px;
}

.sam-info a {
	color: #c9a96e;
	text-decoration: none;
}

.sam-info a:hover {
	text-decoration: underline;
}

/* ---- Responsive ---- */
@media ( max-width: 600px ) {
	.sam-map-canvas {
		height: 320px;
	}

	.sam-primary-bar,
	.sam-secondary-bar {
		padding: 12px 20px;
	}

	.sam-area-primary {
		font-size: 12px;
	}

	.sam-area-secondary {
		font-size: 12px;
	}
}

/* ============================================================
   Layout: Split (text panel + map side by side)
   ============================================================ */

.sam-layout-split .sam-split-wrap {
	min-height: 400px;
}

.sam-layout-split .sam-split-text {
	padding: 32px 40px;
}

.sam-layout-split .sam-split-text .sam-primary-bar,
.sam-layout-split .sam-split-text .sam-secondary-bar {
	text-align: left;
	padding: 0;
	background: transparent;
	margin-bottom: 12px;
}

.sam-layout-split .sam-split-text .sam-area-primary {
	display: inline;
}

.sam-layout-split .sam-split-text .sam-area-secondary {
	display: inline;
}

@media ( max-width: 768px ) {
	.sam-layout-split .sam-split-wrap {
		flex-direction: column !important;
	}
	.sam-layout-split .sam-split-text,
	.sam-layout-split .sam-split-map {
		flex: 1 1 100% !important;
		order: unset !important;
	}
	.sam-layout-split .sam-split-map {
		min-height: 300px;
	}
	.sam-layout-split .sam-split-map .sam-map-canvas {
		position: relative !important;
		height: 300px !important;
	}
}

/* ============================================================
   Layout: Overlay (panel floats over map)
   ============================================================ */

.sam-layout-overlay .sam-overlay-wrap {
	position: relative;
}

.sam-layout-overlay .sam-overlay-panel .sam-primary-bar,
.sam-layout-overlay .sam-overlay-panel .sam-secondary-bar {
	margin-bottom: 0;
}

