/*
 * Contact Page Styles - Mindful Design
 */

/* === PAGE STRUCTURE === */
.poc-contact-page {
	padding: var(--poc-space-2xl, 5rem) 0 var(--poc-space-3xl, 7rem);
	background: linear-gradient(135deg, #f9faf8 0%, #f0f4f3 100%);
	min-height: 85vh;
}

.poc-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--poc-gutter, 2rem);
}

/* === HEADER SECTION === */
.poc-contact-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 4rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(90, 125, 124, 0.12);
}

.poc-page-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 400;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.poc-contact-intro {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	line-height: 1.8;
	color: var(--poc-text, #3a4543);
	opacity: 0.9;
}

.poc-contact-intro p {
	margin: 0;
}

/* === GRID LAYOUT === */
.poc-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 900px) {
	.poc-contact-grid {
		grid-template-columns: 1.5fr 1fr;
		gap: 4rem;
	}
}

/* === CONTACT FORM SECTION === */
.poc-contact-form-section {
	background: #ffffff;
	padding: 3rem;
	border-radius: 16px;
	box-shadow:
		0 4px 24px rgba(90, 125, 124, 0.08),
		0 0 1px rgba(0, 0, 0, 0.05);
}

.poc-contact-form-wrapper {
	/* Form wrapper */
}

.poc-contact-form__title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 500;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.poc-contact-form__subtitle {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--poc-text-light, #6b7c7a);
	margin: 0 0 2rem;
}

.poc-contact-form-placeholder {
	padding: 2rem;
	background: rgba(90, 125, 124, 0.05);
	border-radius: 8px;
	border: 2px dashed rgba(90, 125, 124, 0.2);
	text-align: center;
}

.poc-contact-form-placeholder p {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1rem;
	color: var(--poc-text-light, #6b7c7a);
	margin: 0;
}

/* === FORM STYLING === */
.poc-contact-form-section input[type="text"],
.poc-contact-form-section input[type="email"],
.poc-contact-form-section input[type="tel"],
.poc-contact-form-section input[type="url"],
.poc-contact-form-section textarea,
.poc-contact-form-section select {
	width: 100%;
	padding: 0.875rem 1.125rem;
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--poc-text, #3a4543);
	background: #fafafa;
	border: 2px solid transparent;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.poc-contact-form-section input[type="text"]:focus,
.poc-contact-form-section input[type="email"]:focus,
.poc-contact-form-section input[type="tel"]:focus,
.poc-contact-form-section input[type="url"]:focus,
.poc-contact-form-section textarea:focus,
.poc-contact-form-section select:focus {
	outline: none;
	background: #ffffff;
	border-color: var(--poc-primary, #5a7d7c);
	box-shadow:
		0 0 0 4px rgba(90, 125, 124, 0.08),
		0 2px 8px rgba(90, 125, 124, 0.1);
	transform: translateY(-1px);
}

.poc-contact-form-section textarea {
	min-height: 140px;
	resize: vertical;
}

.poc-contact-form-section label {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--poc-text, #3a4543);
	margin-bottom: 0.5rem;
	display: block;
}

.poc-contact-form-section input[type="submit"],
.poc-contact-form-section button[type="submit"] {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	background: var(--poc-primary, #5a7d7c);
	border: 2px solid var(--poc-primary, #5a7d7c);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow:
		0 4px 12px rgba(90, 125, 124, 0.2),
		0 0 1px rgba(0, 0, 0, 0.1);
}

.poc-contact-form-section input[type="submit"]:hover,
.poc-contact-form-section button[type="submit"]:hover {
	background: var(--poc-accent, #d4a373);
	border-color: var(--poc-accent, #d4a373);
	transform: translateY(-2px);
	box-shadow:
		0 6px 20px rgba(212, 163, 115, 0.35),
		0 0 1px rgba(0, 0, 0, 0.1);
}

.poc-contact-form-section input[type="submit"]:active,
.poc-contact-form-section button[type="submit"]:active {
	transform: translateY(0);
	box-shadow:
		0 2px 8px rgba(90, 125, 124, 0.25),
		0 0 1px rgba(0, 0, 0, 0.1);
}

/* === SIDEBAR === */
.poc-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.poc-contact-info-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow:
		0 2px 16px rgba(90, 125, 124, 0.06),
		0 0 1px rgba(0, 0, 0, 0.05);
}

.poc-sidebar-title {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 1.5rem;
	line-height: 1.4;
}

.poc-contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* === CONTACT ITEMS === */
.poc-contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(90, 125, 124, 0.08);
}

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

.poc-contact-item__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(90, 125, 124, 0.08);
	color: var(--poc-primary, #5a7d7c);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.poc-contact-item:hover .poc-contact-item__icon {
	background: var(--poc-primary, #5a7d7c);
	color: #ffffff;
	transform: scale(1.05);
}

.poc-contact-item__icon svg {
	width: 20px;
	height: 20px;
}

.poc-contact-item__content {
	flex: 1;
	padding-top: 0.125rem;
}

.poc-contact-item__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--poc-text-light, #6b7c7a);
	display: block;
	margin-bottom: 0.375rem;
}

.poc-contact-item__link {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--poc-primary, #5a7d7c);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	word-break: break-word;
}

.poc-contact-item__link:hover {
	color: var(--poc-accent, #d4a373);
}

.poc-contact-item__text {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--poc-text, #3a4543);
	display: block;
}

/* === ADDITIONAL INFO === */
.poc-contact-additional {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--poc-text, #3a4543);
	background: rgba(90, 125, 124, 0.04);
	padding: 1.75rem;
	border-radius: 12px;
	border-left: 3px solid var(--poc-primary, #5a7d7c);
}

.poc-contact-additional p {
	margin: 0 0 0.875rem;
}

.poc-contact-additional p:last-child {
	margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 899px) {
	.poc-contact-page {
		padding: var(--poc-space-xl, 4rem) 0;
	}

	.poc-contact-header {
		margin-bottom: 3rem;
		padding-bottom: 2rem;
	}

	.poc-contact-form-section {
		padding: 2rem;
	}

	.poc-contact-grid {
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.poc-contact-page {
		padding: var(--poc-space-lg, 3rem) 0;
	}

	.poc-container {
		padding: 0 var(--poc-space-md, 1.5rem);
	}

	.poc-contact-header {
		margin-bottom: 2.5rem;
		padding-bottom: 1.5rem;
	}

	.poc-contact-form-section {
		padding: 1.75rem;
	}

	.poc-contact-info-card {
		padding: 1.75rem;
	}

	.poc-contact-form-section input[type="submit"],
	.poc-contact-form-section button[type="submit"] {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.poc-contact-page {
		padding: var(--poc-space-md, 2.5rem) 0;
	}

	.poc-contact-form-section {
		padding: 1.5rem;
		border-radius: 12px;
	}

	.poc-contact-info-card {
		padding: 1.5rem;
	}

	.poc-contact-item {
		gap: 0.875rem;
	}

	.poc-contact-item__icon {
		width: 36px;
		height: 36px;
	}

	.poc-contact-item__icon svg {
		width: 18px;
		height: 18px;
	}
}

/* === SUBTLE ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
	.poc-contact-form-section,
	.poc-contact-info-card {
		animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
	}

	.poc-contact-info-card {
		animation-delay: 0.15s;
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}
