/* =========================================================
   DhanSurya — Single Service Template Styles
   -----------------------------------------------------------
   Palette:
     --ds-green      #1b4d3e   deep advisory green (primary)
     --ds-green-dark #123529   darker green (hover/active)
     --ds-gold       #E3B224   amber accent (CTA / Dhan wing)
     --ds-bg         #f6f7f5   page background (soft sage-grey)
     --ds-card       #ffffff   card / panel background
     --ds-text       #1f2d28   primary text
     --ds-muted      #6b7770   secondary text
     --ds-border     #e3e7e2   hairline borders

   Type:
     Headings — Poppins (confident, geometric, matches DhanSurya's
                existing bold sans wordmark)
     Body     — Inter (clean, highly legible at small sizes)
   ========================================================= */

body.single-service #header-wrapper {
	margin: 0!important;
}

.dhansurya-single-service {
	--ds-green: #1b4d3e;
	--ds-green-dark: #123529;
	--ds-gold: #E3B224;
	--ds-bg: #f6f7f5;
	--ds-card: #ffffff;
	--ds-text: #1f2d28;
	--ds-muted: #6b7770;
	--ds-border: #e3e7e2;

	margin: 0 auto;
	padding: 40px 24px 80px;
	background: transparent;
	color: var(--ds-text);
}

.dhansurya-single-service * {
	box-sizing: border-box;
}

/* ---------- Breadcrumb + Title ---------- */

.service-breadcrumb {
	font-size: 13px;
	color: var(--ds-muted);
	margin-bottom: 14px;
}

.service-breadcrumb a {
	color: var(--ds-muted);
	text-decoration: none;
}

.service-breadcrumb a:hover {
	color: var(--ds-green);
}

.crumb-sep {
	margin: 0 8px;
	color: #c7cdc7;
}

.service-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	color: var(--ds-green);
	margin: 0 0 32px;
}

/* ---------- Layout: sidebar + main ---------- */

.service-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 900px) {
	.service-layout {
		grid-template-columns: 1fr;
	}
}

/* ---------- Sidebar ---------- */

.service-sidebar {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 900px) {
	.service-sidebar {
		position: static;
	}
}

.sidebar-box {
	background: var(--ds-card);
	border: 1px solid var(--ds-border);
	border-radius: 10px;
	padding: 22px;
}

.sidebar-box h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ds-green);
	margin: 0 0 16px;
}

.services-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 480px;
	overflow-y: auto;
}

.services-list li {
	border-bottom: 1px solid var(--ds-border);
}

.services-list li:last-child {
	border-bottom: none;
}

.services-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 2px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ds-text);
	text-decoration: none;
	transition: color 0.15s ease, padding-left 0.15s ease;
}

.services-list a:hover {
	color: var(--ds-green);
	padding-left: 4px;
}

.services-list li.current a {
	color: var(--ds-green);
	font-weight: 700;
}

.service-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.dot-dhan {
	background: var(--ds-gold);
}

.dot-surya {
	background: var(--ds-green);
}

/* Contact box */

.contact-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 13px;
}

.contact-row:last-child {
	margin-bottom: 0;
}

.contact-icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--ds-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.contact-row a {
	color: var(--ds-muted);
	text-decoration: none;
}

.contact-row a:hover {
	color: var(--ds-green);
}

/* Consultation box */

.consult-box {
	background: var(--ds-green);
	border-color: var(--ds-green);
}

.consult-box h3 {
	color: #fff;
}

.consult-box p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	line-height: 1.6;
	margin: 0 0 16px;
}

.consult-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	background: var(--ds-gold);
	color: var(--ds-green-dark);
	font-weight: 700;
	font-size: 13px;
	padding: 12px 16px;
	border-radius: 6px;
	text-decoration: none;
	transition: transform 0.15s ease, background 0.15s ease;
}

.consult-btn:hover {
	background: #ffffff;
	transform: translateY(-1px);
}

/* ---------- Main content ---------- */

.service-main {
	min-width: 0;
}

.service-featured-image {
	width: 100%;
	height: 380px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
}

.service-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-type-badge {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.badge-dhan {
	background: rgba(242, 201, 76, 0.18);
	color: #8a6d1a;
}

.badge-surya {
	background: rgba(27, 77, 62, 0.1);
	color: var(--ds-green);
}

.service-section {
	background: var(--ds-card);
	border: 1px solid var(--ds-border);
	border-radius: 10px;
	padding: 28px 32px;
	margin-bottom: 20px;
}

.service-section h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--ds-green);
	margin: 0 0 14px;
}

.service-section-body {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ds-text);
}

.service-section-body p {
	margin: 0 0 14px;
}

.service-section-body p:last-child {
	margin-bottom: 0;
}

.service-section-body ul,
.service-section-body ol {
	margin: 0 0 14px;
	padding-left: 20px;
}

.service-section-body li {
	margin-bottom: 8px;
}

.service-section-body li::marker {
	color: var(--ds-gold);
}

/* ---------- Process flow diagram ---------- */

.process-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.process-step {
	background: var(--ds-green);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 20px;
	white-space: nowrap;
}

.process-arrow {
	color: var(--ds-gold);
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 560px) {
	.process-flow {
		flex-direction: column;
		align-items: flex-start;
	}
	.process-arrow {
		transform: rotate(90deg);
		margin-left: 20px;
	}
}

/* ---------- FAQ accordion ---------- */

.service-faqs-section {
	padding: 28px 0;
	background: transparent;
	border: none;
}

.service-faqs-section h2 {
	padding: 0 32px;
}

.service-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service-faq-item {
	border: 1px solid var(--ds-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--ds-card);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.service-faq-item.open {
	background: var(--ds-green);
	border-color: var(--ds-green);
}

.service-section .service-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ds-text);
}

.service-faq-item.open .service-faq-question {
	color: #ffffff;
}

.service-faq-icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: var(--ds-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.service-faq-item.open .service-faq-icon {
	background: var(--ds-gold);
	color: var(--ds-green-dark);
}

.service-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}

.service-faq-item.open .service-faq-answer {
	max-height: 600px;
}

.service-faq-answer p {
	margin: 0;
	padding: 0 20px 18px;
	font-size: 13px;
	line-height: 1.7;
}

.service-faq-item.open .service-faq-answer p {
	color: rgba(255, 255, 255, 0.9);
}

/* ---------- CTA box ---------- */

.service-cta-box {
	background: linear-gradient(135deg, var(--ds-gold), #e0b53c);
	border-radius: 10px;
	padding: 30px 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 8px;
}

.service-cta-box p {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--ds-green-dark);
	max-width: 65%;
}

@media (max-width: 560px) {
	.service-cta-box p {
		max-width: 100%;
	}
}

.service-cta-btn {
	display: inline-block;
	background: var(--ds-green);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 13px 26px;
	border-radius: 6px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, transform 0.15s ease;
}

.service-cta-btn:hover {
	background: var(--ds-green-dark);
	transform: translateY(-1px);
}
