/**
 * Services Section Block Styles
 * 
 * Additional CSS styles for the Services Section block
 * 
 * @package Master
 * @version 1.0.0
 */

.services-section-block {
	position: relative;
}

.services-section-block .container {
	position: relative;
	z-index: 1;
}

/* Enhanced shadow effects */
.services-section-block .shadow-2xl {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.services-section-block .shadow-3xl {
	box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

/* Hover effects for service cards */
.services-section-block .bg-gray-50 {
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-section-block .bg-gray-50:hover {
	border-color: rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.services-section-block .text-primary {
	color: var(--color-primary);
}

/* Feature list styling */
.services-section-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-section-block li {
	position: relative;
}

/* Checkmark icon styling */
.services-section-block .flex-shrink-0 {
	flex-shrink: 0;
}

/* Modal trigger button styling */
.services-section-block .btn-trigger-modal {
	transition: all 0.3s ease;
	cursor: pointer;
}

.services-section-block .btn-trigger-modal:hover {
	transform: translateY(-1px);
}

/* Modal overlay and content styling */
.modal-overlay {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.modal-content {
	max-height: 90vh;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #c1c1c1 #f1f1f1;
}

.modal-content::-webkit-scrollbar {
	width: 6px;
}

.modal-content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

/* Modal close button */
.modal-close {
	transition: all 0.2s ease;
}

.modal-close:hover {
	transform: scale(1.1);
}

/* Modal content animations */
.modal-content {
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-content.animated {
	opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.services-section-block .grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.services-section-block .bg-gray-50 {
		padding: 1.5rem;
	}

	.modal-content {
		margin: 1rem;
		max-height: calc(100vh - 2rem);
	}

	.modal-header,
	.modal-body {
		padding: 1.5rem;
	}

	.modal-content-left,
	.modal-content-right {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.services-section-block .bg-gray-50 {
		padding: 1rem;
	}

	.modal-header,
	.modal-body {
		padding: 1rem;
	}
}

/* Focus states for accessibility */
.services-section-block .bg-gray-50:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* Button styling within services section */
.services-section-block .btn {
	transition: all 0.3s ease;
}

/* Modal contact information styling */
.modal-content-left .space-y-4 > div {
	transition: all 0.2s ease;
}

.modal-content-left a {
	text-decoration: none;
}

.modal-content-left a:hover {
	text-decoration: underline;
}

/* Modal image styling */
.modal-content-right img {
	transition: transform 0.3s ease;
}

/* Modal CTA button styling */
.modal-content-left .inline-block {
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
