/* Hero refinements: spacing, trust row, stats pills, and CTAs */

.city-header {
	--hero-gap: 18px;
	--hero-pill-bg: rgba(255, 255, 255, 0.08);
	--hero-pill-radius: 16px;
}

.city-header .city-title {
	margin-bottom: 16px;
}

.city-header .city-hero-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 560px;
}

.city-header .city-subtitle {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.6;
}

.city-header .trust-bar {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(240px, 1fr));
	column-gap: 26px;
	row-gap: 10px;
	margin: 8px 0 6px 0;
}

.city-header .trust-item {
	display: grid !important;
	grid-template-columns: 22px auto;
	column-gap: 8px;
	align-items: center;
	line-height: 1.4;
	font-weight: 600;
}

.city-header .trust-link {
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, color 0.2s ease;
}

.city-header .trust-link:hover,
.city-header .trust-link:focus {
	transform: translateY(-2px);
	color: #b7dcff;
}

.city-header .trust-item .trust-icon {
	font-size: 18px;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 575.98px) {
	.city-header .trust-bar {
		grid-template-columns: 1fr !important;
	}
}

/* Stats pills */
.city-header .city-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin: 0;
}

.city-header .city-stats .pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--hero-pill-bg);
	border-radius: var(--hero-pill-radius);
	padding: 10px 16px;
	backdrop-filter: blur(1px);
}

.city-header .stat-link {
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-header .stat-link:hover,
.city-header .stat-link:focus {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(0, 27, 68, 0.15);
}

.city-header .city-rating .city-stars i,
.city-header .city-count i {
	color: #ffb400;
	font-size: 16px;
}

.city-header .city-rating .rating-number {
	font-weight: 700;
	font-size: 15px;
}

.city-header .city-rating .google-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.city-header .city-count {
	font-weight: 700;
	font-size: 15px;
}

/* CTA buttons */
.city-header .city-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2px;
}


.city-header .city-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 6px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.city-header .city-btn-primary {
	background: linear-gradient(135deg, #00b6ff, #0c7dd8);
	color: #fff;
	border: none;
	box-shadow: 0 8px 20px rgba(0, 124, 255, 0.25);
}

.city-header .city-btn-secondary {
	background: transparent;
	color: #0c7dd8;
	border: 2px solid #0c7dd8;
}
