/**
 * Neuromorphic Contact Form Styles
 * Uses CSS variables for theme color integration
 */

/* Container */
.neuromorphic-contact-section {
	padding: 80px 0;
}

.neuro-container {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
}

/* Icon Container */
.neuro-icon-container {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	box-shadow: 
		8px 8px 16px rgba(0, 0, 0, 0.1),
		-8px -8px 16px rgba(255, 255, 255, 0.9);
}

/* Form Styles */
.neuro-contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.neuro-form-group {
	display: flex;
	flex-direction: column;
}

.neuro-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #333;
}

/* Input Wrapper */
.neuro-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.neuro-input-icon {
	position: absolute;
	left: 16px;
	color: #666;
	pointer-events: none;
	z-index: 1;
}

/* Input Styles */
.neuro-input,
.neuro-textarea {
	width: 100%;
	padding: 14px 16px 14px 48px;
	border: none;
	border-radius: 16px;
	background: #f0f0f0;
	color: #333;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	box-shadow: 
		inset 4px 4px 8px rgba(0, 0, 0, 0.1),
		inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.neuro-textarea {
	padding-left: 16px;
	min-height: 120px;
	resize: vertical;
}

.neuro-input:focus,
.neuro-textarea:focus {
	outline: none;
	box-shadow: 
		inset 4px 4px 8px rgba(0, 0, 0, 0.1),
		inset -4px -4px 8px rgba(255, 255, 255, 0.9),
		0 0 0 3px rgba(var(--v-theme-color-rgb), 0.2);
}

.neuro-input::placeholder,
.neuro-textarea::placeholder {
	color: #999;
}

/* Button */
.neuro-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border: none;
	border-radius: 16px;
	background: #f0f0f0;
	color: var(--v-theme-color);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 
		8px 8px 16px rgba(0, 0, 0, 0.1),
		-8px -8px 16px rgba(255, 255, 255, 0.9);
	font-family: inherit;
}

.neuro-button:hover {
	box-shadow: 
		4px 4px 8px rgba(0, 0, 0, 0.15),
		-4px -4px 8px rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.neuro-button:active {
	box-shadow: 
		inset 4px 4px 8px rgba(0, 0, 0, 0.15),
		inset -4px -4px 8px rgba(255, 255, 255, 0.9);
	transform: translateY(0);
}

.neuro-button svg {
	margin-right: 8px;
}

/* Info Cards */
.neuro-info-card {
	background: #f0f0f0;
	border-radius: 16px;
	box-shadow: 
		8px 8px 16px rgba(0, 0, 0, 0.1),
		-8px -8px 16px rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.neuro-info-card:hover {
	box-shadow: 
		4px 4px 8px rgba(0, 0, 0, 0.12),
		-4px -4px 8px rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.neuro-small-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	box-shadow: 
		inset 4px 4px 8px rgba(0, 0, 0, 0.1),
		inset -4px -4px 8px rgba(255, 255, 255, 0.9);
	margin: 0 auto 12px;
}

/* Grid Layout */
.grid {
	display: grid;
}

.grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gap-6 {
	gap: 24px;
}

.text-center {
	text-align: center;
}

.mt-10 {
	margin-top: 40px;
}

.mb-10 {
	margin-bottom: 40px;
}

.mb-6 {
	margin-bottom: 24px;
}

.mb-3 {
	margin-bottom: 12px;
}

.mb-1 {
	margin-bottom: 4px;
}

.mr-2 {
	margin-right: 8px;
}

.p-12 {
	padding: 48px;
}

.p-4 {
	padding: 16px;
}

.w-full {
	width: 100%;
}

.max-w-2xl {
	max-width: 672px;
}

.w-20 {
	width: 80px;
}

.h-20 {
	height: 80px;
}

.w-12 {
	width: 48px;
}

.h-12 {
	height: 48px;
}

.w-10 {
	width: 40px;
}

.h-10 {
	height: 40px;
}

.w-5 {
	width: 20px;
}

.h-5 {
	height: 20px;
}

.rounded-full {
	border-radius: 50%;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.text-4xl {
	font-size: 36px;
}

.font-bold {
	font-weight: 700;
}

.text-sm {
	font-size: 14px;
}

.text-xs {
	font-size: 12px;
}

.font-medium {
	font-weight: 500;
}

/* Contact Form 7 Integration */
.neuro-form-wrapper {
	background: #f0f0f0;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 
		8px 8px 16px rgba(0, 0, 0, 0.1),
		-8px -8px 16px rgba(255, 255, 255, 0.9);
}

.neuro-form-wrapper .wpcf7-form input[type="text"],
.neuro-form-wrapper .wpcf7-form input[type="email"],
.neuro-form-wrapper .wpcf7-form input[type="tel"],
.neuro-form-wrapper .wpcf7-form input[type="url"],
.neuro-form-wrapper .wpcf7-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: none;
	border-radius: 16px;
	background: #f0f0f0;
	color: #333;
	font-size: 16px;
	box-shadow: 
		inset 4px 4px 8px rgba(0, 0, 0, 0.1),
		inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.neuro-form-wrapper .wpcf7-form input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border: none;
	border-radius: 16px;
	background: #f0f0f0;
	color: var(--v-theme-color);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 
		8px 8px 16px rgba(0, 0, 0, 0.1),
		-8px -8px 16px rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.neuro-form-wrapper .wpcf7-form input[type="submit"]:hover {
	box-shadow: 
		4px 4px 8px rgba(0, 0, 0, 0.15),
		-4px -4px 8px rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
	.neuro-container {
		padding: 24px;
	}

	.p-12 {
		padding: 24px;
	}

	.grid-cols-3 {
		grid-template-columns: 1fr;
	}

	.text-4xl {
		font-size: 28px;
	}

	.neuromorphic-contact-section {
		padding: 60px 0;
	}
}

@media (max-width: 480px) {
	.neuro-container {
		padding: 16px;
	}

	.p-12 {
		padding: 16px;
	}

	.text-4xl {
		font-size: 24px;
	}
}
