/* ============================================================
   CONTACT PAGE — clean, minimal
   ============================================================ */

.bm-contact {
	max-width: 1080px;
	margin: 0 auto;
	padding: 48px 24px 88px;
}

.bm-contact-head {
	max-width: 620px;
	margin: 0 0 40px;
}
.bm-contact-head h1 {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.2vw, 36px);
	letter-spacing: -.01em;
	color: var(--bms-text);
	margin: 0 0 10px;
}
.bm-contact-head p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--bms-text-muted);
	margin: 0;
}

.bm-contact-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	align-items: start;
}

/* ---------- Form ---------- */
.bm-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.bm-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.bm-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.bm-field label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bms-text);
}
.bm-field label span {
	color: var(--bms-red);
}
.bm-field input,
.bm-field select,
.bm-field textarea {
	width: 100%;
	box-sizing: border-box;
	height: 46px;
	font-size: 14px;
}
.bm-field textarea {
	height: auto;
	min-height: 140px;
	resize: vertical;
	line-height: 1.5;
}
.bm-field select {
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") right 14px center no-repeat;
	padding-right: 34px !important;
	cursor: pointer;
}
.bm-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.bm-field--captcha input[type="text"] {
	max-width: 140px;
}

.woocommerce .bm-contact-form button.bm-contact-submit {
	align-self: flex-start;
	height: 48px;
	min-width: 190px;
	padding: 0 28px !important;
	background: var(--bms-red) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: var(--bms-radius-md) !important;
	font-family: 'Archivo', sans-serif;
	font-weight: 700 !important;
	font-size: 14.5px !important;
	cursor: pointer;
	transition: background .15s ease;
}
.woocommerce .bm-contact-form button.bm-contact-submit:hover {
	background: var(--bms-red-dark) !important;
}

/* ---------- Notices ---------- */
.bm-contact-notice {
	display: flex;
	flex-direction: column;
	gap: 2px;
	border-radius: var(--bms-radius-md);
	padding: 14px 18px;
	margin-bottom: 22px;
	font-size: 14px;
}
.bm-contact-notice strong {
	font-size: 14.5px;
}
.bm-contact-notice--ok {
	background: var(--bms-success-bg);
	color: var(--bms-success);
	border: 1px solid var(--bms-success);
}
.bm-contact-notice--error {
	background: var(--bms-error-bg);
	color: var(--bms-error);
	border: 1px solid var(--bms-error);
}

/* ---------- Info column ---------- */
.bm-contact-info-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.bm-contact-info-card {
	border: 1px solid var(--bms-border);
	border-radius: var(--bms-radius-lg);
	background: #fff;
	padding: 24px;
}
.bm-contact-label {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--bms-text-light);
	margin-bottom: 8px;
}
.bm-contact-phone {
	display: block;
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: var(--bms-text);
	text-decoration: none;
	margin-bottom: 4px;
}
.bm-contact-phone:hover {
	color: var(--bms-red);
}
.bm-contact-email {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: var(--bms-text);
	text-decoration: none;
	margin-bottom: 4px;
	word-break: break-word;
}
.bm-contact-email:hover {
	color: var(--bms-red);
}
.bm-contact-info-card p {
	font-size: 13px;
	color: var(--bms-text-muted);
	line-height: 1.5;
	margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.bm-contact-grid {
		grid-template-columns: 1fr;
	}
	.bm-contact-info-col {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.bm-contact-info-card {
		flex: 1 1 220px;
	}
}
@media (max-width: 560px) {
	.bm-field-row {
		grid-template-columns: 1fr;
	}
	.bm-contact-info-col {
		flex-direction: column;
	}
}
