/* ==========================================
   FAQ PAGE
========================================== */
.dr1059faq {
	background: #f8fafc;
	overflow: hidden;
}

/* WRAPPER */
.dr1059faq-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s ease, transform .8s ease;
}

.dr1059faq.dr1059faq-active .dr1059faq-wrapper {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================
   HERO
========================================== */
.dr1059faq-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.dr1059faq-media img {
	width: 100%;
	display: block;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.dr1059faq-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d4af37;
	border-radius: 30px;
	background: #ffffff;
	color: #071422;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 18px;
}

.dr1059faq-content h1 {
	font-size: 42px;
	line-height: 1.3;
	color: #071422;
	margin-bottom: 18px;
	font-weight: 800;
}

.dr1059faq-content p {
	color: #6b7280;
	line-height: 1.9;
	font-size: 16px;
}

/* ==========================================
   FAQ LIST
========================================== */
.dr1059faq-list {
	max-width: 950px;
	margin: 0 auto;
}

.dr1059faq-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	margin-bottom: 18px;
	overflow: hidden;
	transition: all .3s ease;
}

.dr1059faq-item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.dr1059faq-item.active {
	border-color: #d4af37;
}

/* QUESTION */
.dr1059faq-question {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 22px 60px 22px 22px;
	text-align: left;
	cursor: pointer;
	font-size: 17px;
	font-weight: 700;
	color: #071422;
	position: relative;
	line-height: 1.5;
}

/* PLUS / MINUS */
.dr1059faq-question::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: #d4af37;
	font-weight: 700;
	transition: .3s ease;
}

.dr1059faq-item.active .dr1059faq-question::after {
	content: "−";
}

/* ANSWER */
.dr1059faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}

.dr1059faq-answer p {
	padding: 0 22px 22px;
	color: #6b7280;
	line-height: 1.9;
	font-size: 15px;
	margin: 0;
}

/* ==========================================
   CTA
========================================== */
.dr1059faq-cta {
	margin-top: 70px;
	text-align: center;
	background: #071422;
	padding: 60px;
	border-radius: 20px;
}

.dr1059faq-cta h2 {
	color: #ffffff;
	font-size: 32px;
	margin-bottom: 15px;
}

.dr1059faq-cta p {
	color: rgba(255, 255, 255, .85);
	margin-bottom: 25px;
	line-height: 1.8;
}

.dr1059faq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background: #d4af37;
	color: #071422;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	transition: .3s ease;
}

.dr1059faq-btn:hover {
	transform: translateY(-3px);
}

/* ==========================================
   TABLET
========================================== */
@media ( max-width : 992px) {
	.dr1059faq-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.dr1059faq-content h1 {
		font-size: 36px;
	}
	.dr1059faq-cta {
		padding: 45px 30px;
	}
}

/* ==========================================
   MOBILE
========================================== */
@media ( max-width : 768px) {
	.dr1059faq-wrapper {
		padding: 70px 15px;
	}
	.dr1059faq-hero {
		gap: 30px;
		margin-bottom: 50px;
	}
	.dr1059faq-content h1 {
		font-size: 30px;
	}
	.dr1059faq-content p {
		font-size: 15px;
	}
	.dr1059faq-question {
		padding: 18px 50px 18px 18px;
		font-size: 15px;
		line-height: 1.6;
	}
	.dr1059faq-question::after {
		right: 18px;
		font-size: 22px;
	}
	.dr1059faq-answer p {
		padding: 0 18px 18px;
		font-size: 14px;
		line-height: 1.8;
	}
	.dr1059faq-cta {
		padding: 35px 20px;
	}
	.dr1059faq-cta h2 {
		font-size: 26px;
	}
	.dr1059faq-btn {
		width: 100%;
	}
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media ( max-width : 480px) {
	.dr1059faq-content h1 {
		font-size: 26px;
	}
	.dr1059faq-question {
		font-size: 14px;
	}
	.dr1059faq-answer p {
		font-size: 13px;
	}
}