/* ================= FAQ SECTION ================= */
.dr1051faq {
	padding: 90px 16px;
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	font-family: 'Poppins', sans-serif;
}

.dr1051faq .faq-container {
	max-width: 1100px;
	margin: auto;
}

/* Header */
.dr1051faq .faq-header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1051faq .faq-header h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}

.dr1051faq .faq-header p {
	font-size: 16px;
	color: #64748b;
	max-width: 820px;
	margin: auto;
	line-height: 1.7;
}

/* FAQ List */
.dr1051faq .faq-list {
	display: grid;
	gap: 18px;
	margin-bottom: 60px;
}

/* FAQ Item */
.dr1051faq .faq-item {
	background: #ffffff;
	border-radius: 18px;
	padding: 6px 22px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.dr1051faq summary {
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
	padding: 18px 0;
	list-style: none;
	position: relative;
}

.dr1051faq summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: #2563eb;
	font-weight: 700;
}

.dr1051faq details[open] summary::after {
	content: "−";
}

.dr1051faq details p {
	font-size: 14.5px;
	color: #475569;
	line-height: 1.7;
	padding-bottom: 18px;
}

/* CTA */
.dr1051faq .faq-cta {
	background: linear-gradient(135deg, #0f172a, #020617);
	border-radius: 26px;
	padding: 44px 26px;
	text-align: center;
	color: #ffffff;
}

.dr1051faq .faq-cta h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}

.dr1051faq .faq-cta p {
	font-size: 15px;
	color: #cbd5f5;
	margin-bottom: 26px;
}

/* Actions */
.dr1051faq .faq-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1051faq .btn {
	min-width: 180px;
	padding: 14px 22px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.dr1051faq .btn.whatsapp {
	background: #25d366;
}

.dr1051faq .btn.call {
	background: #0ea5e9;
}

.dr1051faq .btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media ( max-width : 480px) {
	.dr1051faq {
		padding: 70px 14px;
	}
	.dr1051faq .faq-header h2 {
		font-size: 26px;
	}
	.dr1051faq .faq-cta h3 {
		font-size: 20px;
	}
	.dr1051faq summary {
		font-size: 15px;
	}
}