/* ================= FAQ SECTION ================= */
.dr1050faq {
	padding: 100px 20px;
	background: linear-gradient(135deg, #f4f8ff, #eaf0ff);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #1a1a1a;
}

.dr1050faq .faq-container {
	max-width: 1000px;
	margin: auto;
}

/* ================= HEADINGS ================= */
.dr1050faq h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0a3cff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.dr1050faq .english-heading {
	display: block;
	font-size: 1rem;
	color: #355cff;
	margin-top: 6px;
}

.dr1050faq .intro {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 50px;
}

.dr1050faq .english-desc {
	display: block;
	font-size: 0.95rem;
	color: #555;
	margin-top: 6px;
}

/* ================= FAQ LIST ================= */
.dr1050faq .faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dr1050faq .faq-item {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.dr1050faq .faq-item:hover {
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

/* ================= QUESTION ================= */
.dr1050faq .faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 20px 22px;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #0a3cff;
	gap: 12px;
}

.dr1050faq .faq-question:focus {
	outline: none;
}

.dr1050faq .faq-question .icon {
	font-size: 1.4rem;
	transition: transform 0.35s ease;
	flex-shrink: 0;
}

/* ================= ANSWER ================= */
.dr1050faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s ease;
	padding: 0 22px;
}

.dr1050faq .faq-answer p {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
	padding-bottom: 14px;
	margin: 0;
}

/* ================= LOCATION ================= */
.dr1050faq .location {
	margin-bottom: 18px;
}

.dr1050faq .location a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 24px;
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dr1050faq .location a:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

/* ================= ACTIVE STATE ================= */
.dr1050faq .faq-item.active .faq-answer {
	max-height: 550px;
}

.dr1050faq .faq-item.active .faq-question .icon {
	transform: rotate(45deg);
}

/* ================= CTA ================= */
.dr1050faq .faq-cta {
	margin-top: 60px;
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #fff;
	padding: 36px 24px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.dr1050faq .faq-cta p {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
}

/* ================= CTA BUTTONS ================= */
.dr1050faq .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1050faq .btn {
	padding: 14px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dr1050faq .btn.call {
	background: #ff9800;
}

.dr1050faq .btn.whatsapp {
	background: #25d366;
}

.dr1050faq .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1050faq {
		padding: 80px 16px;
	}
	.dr1050faq h2 {
		font-size: 2.1rem;
	}
	.dr1050faq .intro {
		font-size: 1.05rem;
	}
	.dr1050faq .faq-question {
		font-size: 1rem;
		padding: 18px;
	}
	.dr1050faq .location a {
		font-size: 0.9rem;
		padding: 9px 16px;
	}
}