/**
 * Contact Page Styles.
 */

/* ─── Contact Page Layout ────────────────────────────────────────────── */

/* Base .form-wrapper and responsive styles are in form-page.css */

/* Override form styles for contact — light blue input background */
.form-wrapper .raqmyn-form__input,
.form-wrapper .raqmyn-form__textarea,
.form-wrapper .raqmyn-form__select {
	background-color: var(--color-bg-alt, #e3f7ff);
}

/* ─── Contact Sidebar ───────────────────────────────────────────────── */

.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-card {
	background: var(--color-bg-alt, #e3f7ff);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	display: flex;
	flex-direction: column;
}

.contact-info-items {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-info-item__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(15, 111, 132, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand, #0f6f84);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.contact-info-item__content h4 {
	font-weight: 700;
	color: var(--color-text, #001f27);
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.contact-info-item__content p {
	color: var(--color-text-light, #475569);
	font-size: 0.875rem;
	line-height: 1.6;
}

/* ─── Map Container ─────────────────────────────────────────────────── */

.contact-map-container {
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
	background: var(--color-bg-alt, #e3f7ff);
	min-height: 300px;
}

.contact-map-container iframe {
	width: 100%;
	height: 300px;
	border: none;
	display: block;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.contact-info-items {
		gap: 1.5rem;
	}
}
