/*
 * Contact Page Styles - One of One Collectables
 * Styles for the contact form and information
 */

/* === CONTACT PAGE STYLES === */
.contact-page {
	background: #f8f9fa;
	min-height: 100vh;
	padding: 40px 0;
}

.contact-page .page-header {
	text-align: center;
	margin-bottom: 40px;
	background: white;
	padding: 40px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-page .page-header h1 {
	color: #0d1b2a;
	font-size: 2.5rem;
	margin: 0 0 15px 0;
	font-weight: 700;
}

.contact-page .page-header p {
	color: #6c757d;
	font-size: 1.1rem;
	margin: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Contact Form */
.contact-form-section {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
	color: #0d1b2a;
	margin: 0 0 24px 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-form .form-group {
	margin-bottom: 24px;
}

.contact-form label {
	display: block;
	margin-bottom: 8px;
	color: #374151;
	font-weight: 600;
	font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: #fff;
	color: #374151;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #0d1b2a;
	box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1);
}

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

.contact-form .submit-btn {
	background: #0d1b2a;
	color: white;
	padding: 14px 32px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
	background: #1a2332;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(13, 27, 42, 0.3);
}

/* Contact Information */
.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.info-card {
	background: white;
	padding: 32px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
	color: #0d1b2a;
	margin: 0 0 16px 0;
	font-size: 1.25rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
}

.info-card .icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f1f1f1;
}

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

.contact-method .method-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6c757d;
}

.contact-method .method-info strong {
	display: block;
	color: #0d1b2a;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-method .method-info span {
	color: #6c757d;
	font-size: 0.9rem;
}

.contact-method a {
	color: #0d1b2a;
	text-decoration: none;
}

.contact-method a:hover {
	text-decoration: underline;
}

.services-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-list li {
	padding: 12px 0;
	border-bottom: 1px solid #f1f1f1;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #374151;
}

.services-list li:last-child {
	border-bottom: none;
}

.service-icon {
	font-size: 1.2rem;
	width: 30px;
	text-align: center;
}

.quick-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quick-links a {
	color: #0d1b2a;
	text-decoration: none;
	padding: 10px 0;
	border-bottom: 1px solid #f1f1f1;
	transition: color 0.3s ease;
}

.quick-links a:hover {
	color: #1a2332;
	text-decoration: underline;
}

.quick-links a:last-child {
	border-bottom: none;
}

/* Mobile styles for contact page */
@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-section {
		padding: 30px 20px;
	}

	.info-card {
		padding: 25px 20px;
	}

	.contact-page .page-header h1 {
		font-size: 2rem;
	}
}