/* ==========================================================================
   Hizmetler Bölümü — Frontend
   ========================================================================== */

.hz-bolum {
	background: #eaf4fb;
	padding: 64px 24px;
	box-sizing: border-box;
}

.hz-ust-etiket {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 13px;
	font-weight: 600;
	color: #5a6b7b;
	margin-bottom: 14px;
}

.hz-bolum-baslik {
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	color: #14223a;
	margin: 0 auto 52px;
	max-width: 820px;
	line-height: 1.15;
}

/* --- Grid --- */
.hz-grid {
	display: grid;
	gap: 26px;
	max-width: 1240px;
	margin: 0 auto;
	align-items: stretch;
}

.hz-grid.hz-sutun-2 { grid-template-columns: repeat(2, 1fr); }
.hz-grid.hz-sutun-3 { grid-template-columns: repeat(3, 1fr); }
.hz-grid.hz-sutun-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Kart --- */
.hz-kart {
	background: #fff;
	border-radius: 18px;
	padding: 34px 28px;
	box-shadow: 0 10px 34px rgba(20, 40, 80, 0.07);
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}

.hz-kart:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 46px rgba(20, 40, 80, 0.13);
}

.hz-numara {
	color: #2a6df4;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 14px;
	display: block;
}

.hz-baslik {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1.25;
	font-weight: 700;
	color: #14223a;
	margin: 0 0 16px;
}

.hz-aciklama {
	color: #4a5667;
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 24px;
	flex-grow: 1;
}

/* --- Alttaki görsel + buton --- */
.hz-gorsel-wrap {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	margin-top: auto;
	aspect-ratio: 4 / 3;
	text-decoration: none;
}

.hz-gorsel-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.hz-gorsel-wrap:hover img {
	transform: scale(1.06);
}

.hz-gorsel-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 55%);
}

.hz-buton {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 2;
	display: inline-block;
	padding: 11px 26px;
	border: 1.5px solid rgba(255, 255, 255, .85);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(2px);
	transition: background .25s ease, color .25s ease;
}

.hz-gorsel-wrap:hover .hz-buton,
.hz-buton:hover {
	background: #fff;
	color: #14223a;
}

/* Görselsiz kart için tek başına buton */
.hz-buton-tek {
	position: static;
	transform: none;
	margin-top: auto;
	align-self: flex-start;
	border-color: #2a6df4;
	color: #2a6df4;
	background: transparent;
}

.hz-buton-tek:hover {
	background: #2a6df4;
	color: #fff;
}

.hz-bos {
	text-align: center;
	color: #8a93a0;
	padding: 40px;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
	.hz-grid.hz-sutun-4 { grid-template-columns: repeat(2, 1fr); }
	.hz-grid.hz-sutun-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.hz-bolum { padding: 44px 16px; }
	.hz-grid.hz-sutun-2,
	.hz-grid.hz-sutun-3,
	.hz-grid.hz-sutun-4 { grid-template-columns: 1fr; }
}
