/* Contact Form Styles */
.contact-form {
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--slate-700);
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--slate-300);
	border-radius: 0.375rem;
	background-color: var(--white);
	color: var(--slate-900);
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--blue-500);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
}

.contact-info-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	padding: 1.5rem;
	height: 100%;
}

.contact-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--blue-100);
	color: var(--blue-600);
	margin-bottom: 1rem;
}

.contact-info-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--slate-900);
}

.contact-map {
	width: 100%;
	height: 400px;
	border-radius: 0.5rem;
	overflow: hidden;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--blue-500);
	color: var(--white);
	flex-shrink: 0;
}

.contact-card-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.contact-card-content p {
	color: var(--slate-500);
	margin-bottom: 0.5rem;
}

.contact-card-content a {
	color: var(--blue-600);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.contact-card-content a:hover {
	color: var(--blue-700);
}

.form-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.form-checkbox {
	width: 1rem;
	height: 1rem;
	margin-top: 0.25rem;
}

.form-checkbox-label {
	font-size: 0.875rem;
	color: var(--slate-600);
}

.form-checkbox-label a {
	color: var(--blue-600);
	text-decoration: none;
	transition: color 0.2s ease;
}

.form-checkbox-label a:hover {
	color: var(--blue-700);
}

.form-message {
	padding: 1rem;
	border-radius: 0.375rem;
	margin-bottom: 1.5rem;
}

.form-message-success {
	background-color: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.2);
	color: var(--green-500);
}

.form-message-error {
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: var(--red-500);
}
