/* ============================================================
   Notebook Onarım Hizmetleri Stilleri
   ============================================================ */

/* ── Liste Sayfası ── */
.nb-liste-wrap {
	max-width: 1100px;
	margin: 40px auto 60px;
	padding: 0 20px;
}
.nb-liste-head {
	text-align: center;
	margin-bottom: 40px;
}
.nb-liste-head h2 {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.nb-liste-head h2 i {
	color: #e8710a;
}
.nb-liste-head p {
	color: #64748b;
	font-size: 16px;
	margin: 0;
}

/* ── Kart Grid ── */
.nb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.nb-kart {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 16px;
	padding: 28px 24px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.nb-kart:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(232, 113, 10, 0.15);
	border-color: rgba(232, 113, 10, 0.3);
}
.nb-kart-ikon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #c25400, #e8710a);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.nb-kart-ikon i {
	font-size: 22px;
	color: #fff;
}
.nb-kart h3 {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px;
}
.nb-kart p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
	margin: 0 0 16px;
	flex-grow: 1;
}
.nb-kart-link {
	font-size: 13px;
	font-weight: 600;
	color: #e8710a;
	display: flex;
	align-items: center;
	gap: 6px;
}
.nb-kart:hover .nb-kart-link {
	gap: 10px;
}

/* ── Detay Sayfası ── */
.nb-detay-wrap {
	max-width: 780px;
	margin: 40px auto 60px;
	padding: 0 20px;
}
.nb-geri {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #e8710a;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 20px;
	transition: gap 0.15s;
}
.nb-geri:hover {
	gap: 12px;
}
.nb-detay-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
}
.nb-detay-head {
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	padding: 36px 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.nb-detay-ikon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, #c25400, #e8710a);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.nb-detay-ikon i {
	font-size: 28px;
	color: #fff;
}
.nb-detay-head h1 {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.nb-detay-body {
	padding: 36px 40px;
	color: #334155;
	font-size: 15px;
	line-height: 1.7;
}
.nb-detay-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 28px 0 12px;
}
.nb-detay-body h3:first-child {
	margin-top: 0;
}
.nb-detay-body ul {
	padding-left: 20px;
	margin: 0 0 16px;
}
.nb-detay-body li {
	margin-bottom: 6px;
}
.nb-detay-body p {
	margin: 0 0 12px;
}
.nb-detay-body strong {
	color: #0f172a;
}
.nb-detay-footer {
	padding: 24px 40px;
	border-top: 1px solid #f1f5f9;
	text-align: center;
}
.nb-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: linear-gradient(135deg, #c25400, #e8710a);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.15s;
	box-shadow: 0 8px 20px rgba(194, 84, 0, 0.25);
}
.nb-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(194, 84, 0, 0.35);
	color: #fff;
}

/* ── İlçe/Semt Linkleri ── */
.nb-ilce-link {
	display: inline;
	padding: 0;
	margin: 0 2px;
	background: none;
	border: none;
	color: #e8e8e8;
	font-size: 5px;
	font-weight: 400;
	text-decoration: none;
	line-height: 1;
}
.nb-ilce-link i {
	display: none;
}
.nb-ilce-link:hover {
	color: #d0d0d0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.nb-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 540px) {
	.nb-grid {
		grid-template-columns: 1fr;
	}
	.nb-liste-head h2 {
		font-size: 22px;
	}
	.nb-detay-head {
		padding: 24px;
	}
	.nb-detay-body {
		padding: 24px;
	}
	.nb-detay-head h1 {
		font-size: 20px;
	}
}
