@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.dentish-service-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 50px auto;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #4b5563;
	line-height: 1.6;
}

.dentish-main-content {
	flex: 1;
	min-width: 60%;
}

.dentish-hero-image img {
	width: 100%;
	border-radius: 20px;
	height: auto;
	margin-bottom: 30px;
	object-fit: cover;
	max-height: 450px;
}

.dentish-intro-text p {
	font-size: 16px;
	margin-bottom: 20px;
}

.dentish-procedures-section h2 {
	font-size: 32px;
	color: #0b1a4a;
	font-weight: 700;
	margin: 40px 0 20px;
	line-height: 1.2;
}

.dentish-procedures-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 40px;
}

.dentish-procedures-list li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-weight: 600;
	color: #0b1a4a;
	font-size: 16px;
}

.dentish-check-icon {
	color: #6366f1;
	background: #eef2ff;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 12px;
}

.dentish-faq-header {
	margin-bottom: 30px;
}

.dentish-faq-badge {
	text-transform: uppercase;
	color: #6366f1;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.dentish-faq-badge::before {
	content: "\f226"; /* Dashicons user */
	font-family: dashicons;
}

.dentish-faq-header h2 {
	font-size: 32px;
	color: #0b1a4a;
	font-weight: 700;
	margin: 10px 0 0;
	line-height: 1.2;
}

.dentish-accordion {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.dentish-accordion-item {
	border: 1px solid #f3f4f6;
	border-radius: 10px;
	overflow: hidden;
}

.dentish-accordion-header {
	width: 100%;
	text-align: left;
	padding: 20px;
	background: #fff;
	border: none;
	font-weight: 600;
	color: #0b1a4a;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.dentish-accordion-header:hover {
	background: #f9fafb;
}

.dentish-accordion-icon {
	font-size: 20px;
	font-weight: 400;
}

.dentish-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background: #6366f1;
	color: white;
}
.dentish-accordion-content p {
	margin: 0;
}

/* Active State */
.dentish-accordion-item.active {
	border-color: #6366f1;
}

.dentish-accordion-item.active .dentish-accordion-header {
	background: #6366f1;
	color: white;
}
.dentish-accordion-item.active .dentish-accordion-icon {
	content: "-";
}
.dentish-accordion-item.active .dentish-accordion-content {
	max-height: 500px;
	padding: 0 20px 20px 20px;
}


/* Sidebar Styles */
.dentish-sidebar {
	width: 320px;
}

.dentish-sidebar-widget {
	background: #f8fafc;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.dentish-sidebar-widget h3 {
	font-size: 20px;
	color: #0b1a4a;
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 700;
}

/* Our Services List */
.dentish-services-list-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dentish-services-list-widget li {
	margin-bottom: 10px;
}

.dentish-services-list-widget a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #fff;
	border-radius: 10px;
	text-decoration: none;
	color: #6b7280;
	font-weight: 500;
	transition: all 0.3s ease;
}

.dentish-services-list-widget a:hover,
.dentish-services-list-widget li.active a {
	color: #6366f1;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.dentish-services-list-widget a span {
	color: #6366f1;
	font-weight: bold;
}
.dentish-services-list-widget li.active a span {
	transform: rotate(45deg);
}

/* Working Hours */
.dentish-working-hours-widget {
	background: #0b1a4a;
	color: white;
}
.dentish-working-hours-widget h3 {
	color: white;
}
.dentish-working-hours-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.dentish-working-hours-widget li {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-size: 14px;
	font-weight: 500;
}
.dentish-working-hours-widget li:last-child {
	border-bottom: none;
}

/* Emergency Widget */
.dentish-emergency-widget {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #fff;
	border: 1px solid #f3f4f6;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.dentish-emergency-icon {
	background: #6366f1;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.dentish-emergency-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
}
.dentish-emergency-info {
	display: flex;
	flex-direction: column;
}
.dentish-emergency-label {
	font-size: 12px;
	color: #9ca3af;
}
.dentish-emergency-info h4 {
	margin: 2px 0;
	color: #0b1a4a;
	font-weight: 700;
}
.dentish-emergency-phone {
	color: #6b7280;
	font-size: 14px;
}

/* All Services Grid */
.dentish-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin: 40px 0;
}
.dentish-service-card {
	background: #fff;
	border-radius: 24px;
	border: 1px solid #f3f4f6;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	display: flex;
	flex-direction: column;
	padding: 30px 25px 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dentish-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dentish-service-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.dentish-service-icon {
	width: 40px;
	height: 40px;
	background: #6366f1;
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dentish-service-icon svg {
	width: 20px;
	height: 20px;
}
.dentish-service-card-title {
	font-size: 18px;
	color: #0b1a4a;
	margin: 0;
	font-weight: 700;
	flex: 1;
	text-align: center;
}
.dentish-service-card-title a {
	color: inherit;
	text-decoration: none;
}
.dentish-service-card-title a:hover {
	color: #6366f1;
}
.dentish-service-arrow {
	font-size: 20px;
	color: #6366f1;
	text-decoration: none;
	font-weight: bold;
}
.dentish-service-divider {
	height: 1px;
	background: #f3f4f6;
	width: 100%;
	margin-bottom: 20px;
}
.dentish-service-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.dentish-service-card-excerpt {
	color: #6b7280;
	font-size: 14px;
	margin-bottom: 25px;
	line-height: 1.6;
	flex: 1;
	text-align: center;
}
.dentish-service-img-wrapper {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}
.dentish-service-card-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

@media (max-width: 992px) {
	.dentish-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.dentish-service-container {
		flex-direction: column;
	}
	.dentish-sidebar {
		width: 100%;
	}
}
