/* ================= BROUCHERS SECTION ================= */
.dr1051brouchers {
	padding: 90px 20px;
	background: linear-gradient(180deg, #ffffff, #f1f5f9);
	font-family: 'Poppins', sans-serif;
}

/* ---------- TITLE ---------- */
.dr1051brouchers .brouchers-title {
	text-align: center;
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 50px;
	line-height: 1.3;
}

.dr1051brouchers .brouchers-sub {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #64748b;
	margin-top: 6px;
}

/* ---------- GRID ---------- */
.dr1051brouchers .brouchers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* Desktop */
	gap: 28px;
	max-width: 1200px;
	margin: auto;
}

/* ---------- CARD ---------- */
.dr1051brouchers .broucher-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 32px 24px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	position: relative;
	overflow: hidden;
}

.dr1051brouchers .broucher-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0f172a, #020617);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}

.dr1051brouchers .broucher-card:hover::before {
	opacity: 0.05;
}

.dr1051brouchers .broucher-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 65px rgba(0, 0, 0, 0.22);
}

/* ---------- ICON ---------- */
.dr1051brouchers .pdf-icon {
	font-size: 52px;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

/* ---------- TEXT ---------- */
.dr1051brouchers .broucher-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
	position: relative;
	z-index: 1;
}

.dr1051brouchers .broucher-card p {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

/* ---------- BUTTON ---------- */
.dr1051brouchers .view-btn {
	display: inline-block;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 999px;
	background: linear-gradient(135deg, #0f172a, #020617);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 1;
}

/* ================= TABLET ================= */
@media ( max-width : 1024px) {
	.dr1051brouchers .brouchers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ================= MOBILE ================= */
@media ( max-width : 768px) {
	.dr1051brouchers {
		padding: 70px 16px;
	}
	.dr1051brouchers .brouchers-title {
		font-size: 28px;
	}
	.dr1051brouchers .brouchers-grid {
		grid-template-columns: repeat(3, 1fr); /* ✅ 3 per row */
		gap: 14px;
	}
	.dr1051brouchers .broucher-card {
		padding: 18px 12px;
		border-radius: 16px;
	}
	.dr1051brouchers .pdf-icon {
		font-size: 34px;
		margin-bottom: 8px;
	}
	.dr1051brouchers .broucher-card h3 {
		font-size: 14px;
		line-height: 1.2;
	}
	.dr1051brouchers .broucher-card p {
		font-size: 12px;
		margin-bottom: 10px;
	}
	.dr1051brouchers .view-btn {
		font-size: 12px;
		padding: 6px 10px;
	}
}

/* ================= VERY SMALL MOBILE (OPTIONAL SAFETY) ================= */
@media ( max-width : 360px) {
	.dr1051brouchers .brouchers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}