/* ==========================================================================
   ILETISIM SAYFASI
   Form yerine dogrudan iletisim kanallari. Tema paletini kullanir.
   ========================================================================== */

:root {
	--ct-accent: #1851f1;
	--ct-wa: #1faf54;
	--ct-ink: #222;
	--ct-muted: rgba(34, 34, 34, .6);
	--ct-cream: #f9f5ea;
	--ct-line: rgba(34, 34, 34, .1);
}

.ct-intro {
	max-width: 40em;
	margin: 0 auto calc(20px + 1.5vw);
	text-align: center;
	font-size: calc(15px + .2vw);
	line-height: 1.7;
	color: var(--ct-muted);
}

/* --- Kanallar ----------------------------------------------------------- */

.ct-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: calc(12px + .8vw);
	margin: 0 0 calc(24px + 2vw);
	padding: 0;
	list-style: none;
}

.ct-action {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 24px 22px;
	background: #fff;
	border: 1px solid var(--ct-line);
	border-top: 3px solid var(--ct-accent);
	color: var(--ct-ink);
	transition: transform .3s ease, box-shadow .3s ease;
}

.ct-action:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px -18px rgba(3, 36, 74, .4);
	color: var(--ct-ink);
}

.ct-action.is-wa {
	border-top-color: var(--ct-wa);
}

.ct-action-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ct-accent);
}

.ct-action.is-wa .ct-action-label {
	color: var(--ct-wa);
}

.ct-action-value {
	font-family: 'Jost*', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	word-break: break-word;
}

.ct-action-note {
	font-size: 13px;
	line-height: 1.5;
	color: var(--ct-muted);
}

/* --- Bilgi seridi ------------------------------------------------------- */

.ct-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px;
	margin: 0 0 calc(20px + 1.5vw);
	padding: 0;
	list-style: none;
	background: var(--ct-line);
	border: 1px solid var(--ct-line);
}

.ct-fact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	text-align: center;
	background: #fff;
	padding: 22px 16px;
}

.ct-fact img {
	width: 30px;
	height: 30px;
	opacity: .5;
}

.ct-fact-label {
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ct-muted);
}

.ct-fact-value {
	font-size: 15px;
	font-weight: 500;
	color: var(--ct-ink);
	margin: 0;
}

/* --- Kucuk ekran -------------------------------------------------------- */

@media (max-width: 480px) {
	.ct-actions {
		grid-template-columns: 1fr;
	}

	.ct-facts {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ct-action {
		transition: none;
	}

	.ct-action:hover {
		transform: none;
	}
}
