/* Contact page — Dor Tshuva */

body.page-template-page-contact,
body.page-id-25 {
	background: var(--dt-site-background, #dcebed);
}

body.page-template-page-contact #main-content.container,
body.page-id-25 #main-content.container {
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.page-template-page-contact #main-content,
body.page-id-25 #main-content,
body.page-template-page-contact .container-wrapper,
body.page-id-25 .container-wrapper,
body.page-template-page-contact .content,
body.page-id-25 .content {
	background: transparent !important;
	border: 0 !important;
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.page-template-page-contact #sidebar,
body.page-id-25 #sidebar,
body.page-template-page-contact .breadcrumbs,
body.page-id-25 .breadcrumbs,
body.page-template-page-contact .share-post,
body.page-id-25 .share-post,
body.page-template-page-contact .post-title,
body.page-id-25 .post-title,
body.page-template-page-contact .entry,
body.page-id-25 .entry,
body.page-template-page-contact #check-also-box,
body.page-id-25 #check-also-box,
body.page-template-page-contact .e3lan,
body.page-id-25 .e3lan {
	display: none !important;
}

.dt-contact-page {
	max-width: 920px;
	margin: 0 auto;
	padding: 48px 20px 88px;
	font-family: 'Heebo', Arial, sans-serif;
	color: #1c2430;
	text-align: center;
}

.dt-contact-hero {
	margin-bottom: 40px;
	animation: dtContactFadeUp .55s ease both;
}

.dt-contact-brand {
	margin: 0 0 10px;
	font-size: clamp(2rem, 4.5vw, 2.75rem);
	font-weight: 700;
	color: #1f3d5c;
	letter-spacing: 0;
	line-height: 1.15;
}

.dt-contact-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(1.35rem, 2.6vw, 1.7rem);
	font-weight: 600;
	color: #334155;
	line-height: 1.3;
}

.dt-contact-lead {
	margin: 0 auto;
	max-width: 28rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #5b6472;
}

.dt-contact-channels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0 0 28px;
}

.dt-contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 28px 18px 24px;
	text-decoration: none !important;
	color: inherit;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(31, 61, 92, 0.10);
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(28, 36, 48, 0.06);
	backdrop-filter: blur(6px);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	animation: dtContactFadeUp .6s ease both;
}

.dt-contact-card:nth-child(1) { animation-delay: .05s; }
.dt-contact-card:nth-child(2) { animation-delay: .12s; }
.dt-contact-card:nth-child(3) { animation-delay: .19s; }

.dt-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(28, 36, 48, 0.10);
	border-color: rgba(31, 61, 92, 0.18);
}

.dt-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin-bottom: 6px;
	color: #1f3d5c;
	background: rgba(31, 61, 92, 0.08);
}

.dt-contact-whatsapp .dt-contact-icon {
	color: #128c7e;
	background: rgba(18, 140, 126, 0.12);
}

.dt-contact-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #6b7280;
}

.dt-contact-value {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1f3d5c;
	letter-spacing: 0.02em;
	line-height: 1.4;
	word-break: break-word;
}

.dt-contact-cta {
	margin-top: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #8a7040;
}

.dt-contact-whatsapp .dt-contact-cta {
	color: #0f766e;
}

.dt-contact-note {
	margin: 0 auto;
	max-width: 26rem;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #6b7280;
	animation: dtContactFadeUp .65s ease both;
	animation-delay: .25s;
}

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

@media (max-width: 820px) {
	.dt-contact-channels {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}

	.dt-contact-page {
		padding: 36px 16px 72px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dt-contact-hero,
	.dt-contact-card,
	.dt-contact-note {
		animation: none !important;
	}

	.dt-contact-card:hover {
		transform: none;
	}
}
