/* -------------------------------------------------------------------------
   Contact page: map beside the form, then the details bar.
   ---------------------------------------------------------------------- */

/* No page header here, so the page carries the breathing room under the
   breadcrumb rule itself. */
.fb-contact { padding: clamp(26px, 3.4vw, 46px) 0 0; }

.fb-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 60px);
	align-items: stretch;
	padding-bottom: clamp(36px, 5vw, 70px);
}

/* --- Map --------------------------------------------------------------- */
.fb-contact__map {
	position: relative;
	min-height: 420px;
	border-radius: var(--fb-radius-lg);
	background: var(--fb-grey-200);
	overflow: hidden;
}

.fb-contact__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --- Form -------------------------------------------------------------- */
.fb-contact__form { align-self: center; }

.fb-contact__title {
	margin-bottom: .5em;
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
}

/* Bullet on the left, like every other section head. */
.fb-contact__title::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	margin: -.1em 10px 0 0;
	border-radius: 50%;
	background: var(--fb-black);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, .12);
}

.fb-contact__title::after {
	content: "";
	display: block;
	width: 190px;
	max-width: 100%;
	height: 1px;
	margin-top: .45em;
	background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
	animation: fb-divider-glow-dark 2.6s ease-in-out infinite;
}

.fb-contact__text {
	margin-bottom: 1.4em;
	color: var(--fb-grey-800);
	font-size: .875rem;
}

.fb-contact__fields {
	display: grid;
	gap: 12px;
}

.fb-contact__fields input,
.fb-contact__fields textarea {
	background: var(--fb-grey-100);
	border-color: var(--fb-grey-300);
}

.fb-contact__fields textarea { min-height: 130px; }

.fb-contact__submit {
	width: 100%;
	margin-top: 4px;
}

.fb-contact .fb-contact__submit:hover,
.fb-contact .fb-contact__submit:focus {
	background: var(--fb-green-dark);
	border-color: var(--fb-green-dark);
	color: var(--fb-white);
}

/* Honeypot — off-screen rather than display:none, which bots skip. */
.fb-contact__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fb-contact__msg {
	margin: 0 0 14px;
	padding: 12px 16px;
	border-radius: var(--fb-radius);
	font-size: .875rem;
}

.fb-contact__msg--ok {
	background: rgba(50, 205, 51, .12);
	color: var(--fb-green-dark);
}

.fb-contact__msg--error {
	background: rgba(214, 54, 56, .1);
	color: #a02224;
}

/* --- Details bar ------------------------------------------------------- */
.fb-contact-bar {
	padding: clamp(26px, 3.4vw, 40px) 0;
	border-top: 1px solid var(--fb-grey-300);
}

.fb-contact-bar__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.fb-contact-bar__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 22px;
	border-right: 1px solid var(--fb-grey-300);
	font-size: .875rem;
}

.fb-contact-bar__item:first-child { padding-left: 0; }

.fb-contact-bar__item:last-child {
	padding-right: 0;
	border-right: 0;
}

.fb-contact-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--fb-grey-300);
	border-radius: 50%;
	color: var(--fb-black);
}

.fb-contact-bar__body {
	display: flex;
	flex-direction: column;
	color: var(--fb-grey-800);
}

.fb-contact-bar__body strong {
	color: var(--fb-black);
	font-weight: 600;
}

.fb-contact-bar__body a { color: var(--fb-grey-800); }

.fb-contact-bar__body a:hover { color: var(--fb-green-dark); }

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
	.fb-contact__grid { grid-template-columns: minmax(0, 1fr); }

	.fb-contact__map { min-height: 320px; }

	.fb-contact-bar__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }

	.fb-contact-bar__item:nth-child(2n) { border-right: 0; padding-right: 0; }

	.fb-contact-bar__item:nth-child(2n+1) { padding-left: 0; }
}

@media (max-width: 600px) {
	.fb-contact-bar__list { grid-template-columns: minmax(0, 1fr); }

	.fb-contact-bar__item { border-right: 0; padding: 0; }
}

/* -------------------------------------------------------------------------
   Shared form card — used by the return request page.
   ---------------------------------------------------------------------- */

.fb-form-card {
	margin-top: clamp(32px, 4vw, 56px);
	padding: clamp(24px, 3.2vw, 40px);
	border: 1px solid var(--fb-grey-300);
	border-radius: var(--fb-radius-lg);
	background: var(--fb-grey-100);
}

.fb-form-card__title {
	margin-bottom: .35em;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.fb-form-card__title::after {
	content: "";
	display: block;
	width: 190px;
	max-width: 100%;
	height: 1px;
	margin-top: .45em;
	background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
	animation: fb-divider-glow-dark 2.6s ease-in-out infinite;
}

.fb-form-card__text {
	margin-bottom: 1.4em;
	color: var(--fb-grey-800);
	font-size: .875rem;
}

.fb-form { display: grid; gap: 14px; }

.fb-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.fb-form__field { margin: 0; }

.fb-form__field label {
	margin-bottom: .4em;
	font-size: .8125rem;
	font-weight: 600;
}

.fb-form__req { color: var(--fb-orange); }

.fb-form input,
.fb-form select,
.fb-form textarea { background: var(--fb-white); }

.fb-form__choice {
	margin: 0;
	padding: 0;
	border: 0;
}

.fb-form__choice legend {
	margin-bottom: .5em;
	padding: 0;
	font-size: .8125rem;
	font-weight: 600;
}

.fb-form__radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 20px 0 0;
	font-size: .875rem;
	font-weight: 500;
}

.fb-form__radio input {
	width: auto;
	margin: 0;
}

.fb-form__submit {
	justify-self: start;
	margin-top: 4px;
}

.fb-form-card .fb-form__submit:hover,
.fb-form-card .fb-form__submit:focus {
	background: var(--fb-green-dark);
	border-color: var(--fb-green-dark);
	color: var(--fb-white);
}

@media (max-width: 600px) {
	.fb-form__row { grid-template-columns: minmax(0, 1fr); }

	.fb-form__submit { justify-self: stretch; width: 100%; }
}
