/* Contact Template Styles */

.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

@media (min-width: 960px) {
	.contact-page-grid {
		grid-template-columns: 1fr 1.2fr;
		gap: 5rem;
	}
}

/* Contact Information Column */
.contact-info-column h2,
.contact-form-column h2 {
	font-size: 1.75rem;
	font-weight: 300;
	margin-bottom: 2rem;
	color: #333;
}

.contact-item {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #eee;
}

.contact-item:last-child {
	border-bottom: none;
}

.contact-item h3 {
	font-size: 0.875rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.contact-item p {
	margin: 0;
	line-height: 1.6;
	color: #333;
	font-size: 1rem;
}

.contact-item a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #00a8e8;
}

.business-hours p {
	margin: 0.5rem 0;
	line-height: 1.8;
}

.business-hours strong {
	font-weight: 400;
	color: #333;
}

/* Map Section */
.contact-map-section {
	margin-top: 2rem;
}

.contact-map-section h3 {
	font-size: 0.875rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.contact-map-section iframe {
	width: 100%;
	height: 350px;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Clean Contact Form */
.clean-contact-form {
	max-width: 100%;
}

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

.clean-contact-form input[type="text"],
.clean-contact-form input[type="email"],
.clean-contact-form input[type="tel"],
.clean-contact-form textarea {
	width: 100%;
	padding: 0.75rem 0;
	font-size: 1rem;
	font-family: inherit;
	color: #333;
	background: transparent;
	border: none;
	border-bottom: 1px solid #ddd;
	outline: none;
	transition: border-color 0.3s ease;
}

.clean-contact-form input::placeholder,
.clean-contact-form textarea::placeholder {
	color: #999;
	opacity: 1;
}

.clean-contact-form input:focus,
.clean-contact-form textarea:focus {
	border-bottom-color: #00a8e8;
}

.clean-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

/* Anti-spam field - hidden from users */
.form-field-extra {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Submit Button */
.contact-submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 400;
	font-family: inherit;
	color: #fff;
	background: #00a8e8;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 168, 232, 0.2);
}

.contact-submit-btn:hover {
	background: #0091cc;
	box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
	transform: translateY(-1px);
}

.contact-submit-btn:active {
	transform: translateY(0);
}

.contact-submit-btn i {
	font-size: 0.875rem;
}

/* Form Messages */
.form-messages {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 4px;
	display: none;
}

.form-messages.success {
	display: block;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-messages.error {
	display: block;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 959px) {
	.contact-page-grid {
		gap: 3rem;
	}
	
	.contact-info-column h2,
	.contact-form-column h2 {
		font-size: 1.5rem;
	}
	
	.contact-map-section iframe {
		height: 300px;
	}
	
	.contact-submit-btn {
		width: 100%;
		justify-content: center;
	}
}
