/* ── Contact Section ──────────────────────────────────────── */

.contact-section {
	background: var(--warm, #f8f8f8);
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: start;
}

/* ── Left: Contact Info ──────────────────────────────────── */

.contact-info-heading {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 32px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 40px;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-detail-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--ink, #0C1F3F);
	margin-top: 2px;
}

.contact-detail-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--gray-500, #6b7280);
	margin-bottom: 4px;
}

.contact-detail-value {
	font-size: 15px;
	font-weight: 400;
	color: var(--ink, #0C1F3F);
	line-height: 1.5;
}

.contact-detail-link {
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.contact-detail-link:hover {
	color: var(--crimson, #B91C1C);
}

/* ── Opening Hours ───────────────────────────────────────── */

.contact-hours {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	padding-top: 24px;
}

.contact-hours-heading {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 16px;
}

.contact-hours-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
}

.contact-hours-day {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink, #0C1F3F);
}

.contact-hours-time {
	font-size: 14px;
	color: var(--gray-500, #6b7280);
}

/* ── Right: Form ─────────────────────────────────────────── */

.contact-form-heading {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 28px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cf-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--gray-500, #6b7280);
	margin-bottom: 6px;
}

.cf-input {
	width: 100%;
	padding: 4px 14px;
	font-size: 14px;
	font-family: inherit;
	color: var(--ink, #0C1F3F);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.cf-input:focus {
	outline: none;
	border-color: var(--ink, #0C1F3F);
	box-shadow: 0 0 0 3px rgba(12, 31, 63, 0.08);
}

.cf-input::placeholder {
	color: var(--gray-400, #9ca3af);
}

.cf-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.cf-textarea {
	min-height: 120px;
	resize: vertical;
}

.cf-submit {
	width: 100%;
	padding: 14px;
	text-align: center;
	background: var(--ink, #0C1F3F);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cf-submit:hover {
	background: #162d52;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(12, 31, 63, 0.3);
}

.cf-submit:active {
	transform: translateY(0);
	box-shadow: none;
}

.cf-note {
	font-size: 13px;
	color: var(--gray-500, #6b7280);
	text-align: center;
	margin: 0;
}

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

@media (max-width: 768px) {
	.contact-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
