.fimbel-finder {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fimbel-card {
	border: 1px solid #ececec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
	padding: 22px 26px;
}
.fimbel-search-card h2 {
	margin: 0 0 8px;
	font-size: 28px;
	letter-spacing: -0.02em;
}
.fimbel-search-card p {
	margin: 0 0 16px;
	color: #4b5563;
	font-size: 15px;
}
.fimbel-search {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.fimbel-search input {
	flex: 1 1 320px;
	padding: 12px 14px;
	border: 1px solid #dfe3e8;
	border-radius: 10px;
	font-size: 15px;
	background: #fdfdfd;
}
.fimbel-search button,
.fimbel-quote-btn {
	background: #d62828;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 12px 18px;
	font-size: 14px;
	cursor: pointer;
}
.fimbel-search button:disabled,
.fimbel-quote-btn:disabled {
	background: #bfbfbf;
	cursor: not-allowed;
}
.fimbel-results {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 22px;
}
.fimbel-results[hidden] {
	display: none;
}
.fimbel-results-list h3,
.fimbel-assigned h3 {
	margin: 0 0 12px;
	font-size: 18px;
	color: #1f2937;
}
.fimbel-branch-card {
	border: 1px solid #f0f0f0;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 12px;
	background: #ffffff;
}
.fimbel-branch-card strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}
.fimbel-branch-card p {
	margin: 3px 0;
	color: #6b7280;
	font-size: 13px;
}
.fimbel-branch-card a {
	color: #2f3b4e;
	text-decoration: none;
}
.fimbel-assigned {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fimbel-assigned .fimbel-branch-card {
	background: #f8f7f3;
	border-color: #e6e2dc;
}
.fimbel-form-wrap {
	margin-top: 8px;
}
.fimbel-message {
	padding: 12px 14px;
	border-radius: 12px;
	background: #f8f7f3;
	border: 1px solid #ececec;
	color: #333;
}
.fimbel-search-note {
	margin-top: 8px;
	font-size: 13px;
	color: #666;
}
.fimbel-map-card {
	padding: 18px;
}
.fimbel-map {
	width: 100%;
	height: 320px;
	border-radius: 12px;
	background: #e9eef3;
}
.fimbel-map-note {
	margin: 10px 0 0;
	font-size: 13px;
	color: #6b7280;
}
.fimbel-contact-card h2 {
	margin: 0 0 8px;
	font-size: 26px;
}
.fimbel-honeypot {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.fimbel-contact-card p {
	margin: 0 0 16px;
	color: #4b5563;
	font-size: 15px;
}
.fimbel-contact-card,
.fimbel-contact-card h2,
.fimbel-contact-card p,
.fimbel-contact-card form,
.fimbel-contact-field,
.fimbel-contact-field span,
.fimbel-contact-field input,
.fimbel-contact-field textarea,
.fimbel-form-note {
	text-align: left;
}
.fimbel-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}
.fimbel-contact-submit-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.fimbel-contact-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	color: #2f3b4e;
}
.fimbel-contact-field input,
.fimbel-contact-field select,
.fimbel-contact-field textarea {
	border: 1px solid #dfe3e8;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	background: #fdfdfd;
	color: #1f2937;
}
.fimbel-checkbox-group {
	border: 0;
	padding: 0;
	margin: 0 0 16px;
}
.fimbel-checkbox-group legend {
	margin: 0 0 8px;
	font-size: 14px;
	color: #2f3b4e;
}
.fimbel-checkbox-group label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 18px 10px 0;
	color: #2f3b4e;
	font-size: 14px;
}
.fimbel-checkbox-group input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border-radius: 4px;
}
.fimbel-contact-field input::placeholder,
.fimbel-contact-field textarea::placeholder {
	color: #b8c0ca !important;
	opacity: 1;
	font-style: italic;
}
.fimbel-contact-wide {
	grid-column: span 2;
}
.fimbel-required {
	color: #d62828;
	font-weight: 700;
}
.fimbel-contact-submit {
	background: #d62828;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 12px 18px;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.fimbel-contact-submit:disabled {
	background: #bfbfbf;
	cursor: not-allowed;
}
.fimbel-contact-service-card {
	margin: 0 0 16px;
	padding: 18px 20px;
	border: 1px solid #f0d6c2;
	border-radius: 14px;
	background: #fff7f2;
}
.fimbel-contact-service-card h3 {
	margin: 0 0 8px;
	font-size: 20px;
	color: #1f2937;
}
.fimbel-contact-service-card p {
	margin: 0 0 14px;
	color: #4b5563;
}
.fimbel-contact-service-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #d62828;
	color: #fff;
	border-radius: 10px;
	padding: 12px 18px;
	text-decoration: none;
}
.fimbel-form-note {
	margin-top: 10px;
	font-size: 13px;
	color: #6b7280;
}
.fimbel-not-serviced p {
	margin: 8px 0 0;
	color: #4b5563;
	font-size: 15px;
}
@media (max-width: 900px) {
	.fimbel-results {
		grid-template-columns: 1fr;
	}
	.fimbel-map {
		height: 260px;
	}
	.fimbel-contact-grid {
		grid-template-columns: 1fr;
	}
	.fimbel-contact-wide {
		grid-column: span 1;
	}
}
