/**
 * City / service landing page template (hero + intro)
 * Example: miami-property-management.htm
 */

.mpm-city-hero,
.mpm-city-intro {
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.mpm-city-hero *,
.mpm-city-intro * {
	box-sizing: border-box;
}

/* Hero */
.mpm-city-hero {
	position: relative;
	width: 100%;
	min-height: 520px;
	height: 520px;
	overflow: hidden;
	background-color: #1d3b5a;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.mpm-city-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 35, 60, 0.92) 0%, rgba(15, 35, 60, 0.78) 38%, rgba(15, 35, 60, 0.25) 70%, rgba(15, 35, 60, 0.05) 100%);
	pointer-events: none;
}

.mpm-city-hero__container {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	height: 100%;
	display: flex;
	align-items: center;
}

.mpm-city-hero__content {
	max-width: 680px;
	text-align: left;
}

.mpm-city-hero__title {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(36px, 4.5vw, 64px);
	font-weight: 700;
	line-height: 1.08;
	text-transform: uppercase;
}

.mpm-city-hero__title-main {
	color: #ffffff;
}

.mpm-city-hero__title-accent {
	color: #8bc53f;
}

.mpm-city-hero__accent {
	display: block;
	width: 64px;
	height: 4px;
	background: #8bc53f;
	margin: 24px 0;
}

.mpm-city-hero__subtitle {
	margin: 0 0 32px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.6;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	max-width: 620px;
}

.mpm-city-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.mpm-city-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	padding: 0 32px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mpm-city-hero__btn--primary {
	background: #8bc53f;
	color: #ffffff;
	border: 2px solid #8bc53f;
}

.mpm-city-hero__btn--primary:hover,
.mpm-city-hero__btn--primary:focus {
	background: #7ab332;
	border-color: #7ab332;
	color: #ffffff;
}

.mpm-city-hero__btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.mpm-city-hero__btn--secondary:hover,
.mpm-city-hero__btn--secondary:focus {
	background: #ffffff;
	color: #1d3b5a;
}

/* Intro — two columns */
.mpm-city-intro {
	background: #ffffff;
	padding: 64px 24px 72px;
}

.mpm-city-intro__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.mpm-city-intro__grid {
	display: grid;
	grid-template-columns: minmax(260px, 34%) 1fr;
	gap: 48px 56px;
	align-items: start;
}

.mpm-city-intro__heading {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(26px, 2.5vw, 34px);
	font-weight: 700;
	line-height: 1.25;
	color: #123d25;
}

.mpm-city-intro__heading-line {
	display: block;
	width: 56px;
	height: 4px;
	margin-top: 18px;
	background: #8bc53f;
}

.mpm-city-intro__body p {
	margin: 0 0 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: #222222;
}

.mpm-city-intro__body p:last-of-type {
	margin-bottom: 28px;
}

.mpm-city-intro__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	background: #8bc53f;
	color: #ffffff !important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.3px;
	border-radius: 4px;
	border: 2px solid #8bc53f;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.mpm-city-intro__cta:hover,
.mpm-city-intro__cta:focus {
	background: #7ab332;
	border-color: #7ab332;
	color: #ffffff !important;
}

@media (max-width: 991px) {
	.mpm-city-hero {
		min-height: 480px;
		height: auto;
	}

	.mpm-city-hero__container {
		height: auto;
		min-height: 480px;
		align-items: flex-start;
		padding: 36px 40px 44px;
	}

	.mpm-city-intro__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 767px) {
	.mpm-city-hero {
		min-height: 420px;
		height: auto;
		background-position: 70% center;
		background-attachment: scroll;
	}

	.mpm-city-hero__container {
		height: auto;
		min-height: 420px;
		align-items: flex-start;
		padding: 32px 24px 40px;
	}

	.mpm-city-intro__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.mpm-city-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.mpm-city-hero__btn {
		width: 100%;
	}

	.mpm-city-intro {
		padding: 48px 0 56px;
	}

	.mpm-city-intro__cta {
		width: 100%;
		text-align: center;
	}
}
