/**
 * Services Page Template Stylesheet
 * Brandsmaya New Theme
 */

/* Hero Section */
.services-hero-section {
	text-align: center;
	padding: 120px 0 60px 0;
	background: var(--color-dark);
	position: relative;
	overflow: hidden;
}

.services-hero-title {
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #FFF 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.services-hero-subtitle {
	font-size: var(--size-22);
	color: var(--color-primary);
	font-weight: 600;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.4;
}

/* Services List Overrides */
.services-list-section {
	background-color: var(--color-light);
	padding: 100px 0;
}

/* Reusing Why Choose Us Section Styles from About Page */
.services-why-section {
	background: var(--color-dark);
	padding: 100px 0;
}

.about-why-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.about-why-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-why-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.about-why-icon-wrap {
	background: rgba(235, 36, 36, 0.1);
	border: 1px solid rgba(235, 36, 36, 0.2);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.about-why-icon-wrap svg {
	width: 14px;
	height: 14px;
	stroke-width: 3px;
}

.about-why-text {
	font-size: var(--size-18);
	font-weight: 600;
	color: var(--color-white);
	opacity: 0.95;
	line-height: 1.4;
}

.about-why-right {
	position: relative;
	display: flex;
	justify-content: center;
}

.about-why-art {
	width: 100%;
	max-width: 380px;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(235, 36, 36, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(255, 255, 255, 0.1);
	padding: 40px;
	animation: floatRing 6s ease-in-out infinite;
}

.about-why-art-inner {
	width: 80%;
	height: 80%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-why-art svg {
	width: 120px;
	height: 120px;
	color: var(--color-primary);
	opacity: 0.85;
}

/* Animations */
@keyframes floatRing {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
}

/* Responsive Rules */
@media (max-width: 1024px) {
	.about-why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.about-why-right {
		display: none;
	}
}

@media (max-width: 768px) {
	.services-hero-title {
		font-size: 3rem;
	}
}

@media (max-width: 576px) {
	.services-hero-title {
		font-size: 2.5rem;
	}
	
	.about-why-text {
		font-size: var(--size-16);
	}
}

/* ====================================================
   Single Service Detail Page Styles
   ==================================================== */

.service-detail-hero {
	background-color: var(--color-dark);
	color: var(--color-white);
	padding: 120px 0 80px 0;
	position: relative;
	overflow: hidden;
}

.service-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: var(--size-16);
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 25px;
}

.service-breadcrumbs a {
	color: rgba(255, 255, 255, 0.6);
	transition: var(--transition-smooth);
}

.service-breadcrumbs a:hover {
	color: var(--color-primary);
}

.service-breadcrumbs .separator {
	color: rgba(255, 255, 255, 0.3);
}

.service-breadcrumbs .current {
	color: var(--color-white);
	font-weight: 600;
}

.service-hero-content {
	max-width: 900px;
}

.service-hero-tagline {
	font-size: var(--size-26);
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}

.service-hero-title-detail {
	font-size: var(--size-64);
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--color-white);
}

.service-hero-desc {
	font-size: var(--size-18);
	opacity: 0.85;
	line-height: 1.6;
	max-width: 700px;
}

/* 2-Column Grid Layout */
.service-layout-grid {
	display: grid;
	grid-template-columns: 1.9fr 1.1fr;
	gap: 60px;
	padding: 80px 0;
	align-items: start;
}

.service-main-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

/* Featured Image */
.service-featured-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

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

/* Service Editor Content styling */
.service-body-content {
	line-height: 1.8;
	color: rgba(50, 48, 46, 0.9);
}

.service-body-content p {
	margin-bottom: 25px;
}

.service-body-content h2 {
	font-size: var(--size-26);
	color: var(--color-dark);
	margin-top: 40px;
	margin-bottom: 20px;
}

/* Highlights Grid */
.service-section-title {
	font-size: var(--size-26);
	color: var(--color-dark);
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 12px;
}

.service-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background-color: var(--color-primary);
	border-radius: 2px;
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.highlight-card {
	background: var(--color-white);
	border: 1px solid rgba(50, 48, 46, 0.08);
	border-radius: 8px;
	padding: 25px;
	transition: var(--transition-bounce);
}

.highlight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(50, 48, 46, 0.05);
	border-color: rgba(238, 67, 41, 0.2);
}

.highlight-icon {
	color: var(--color-primary);
	margin-bottom: 15px;
	font-size: 24px;
	background: rgba(238, 67, 41, 0.08);
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.highlight-icon svg {
	width: 24px;
	height: 24px;
}

.highlight-card h3 {
	font-size: var(--size-18);
	color: var(--color-dark);
	margin-bottom: 10px;
}

.highlight-card p {
	font-size: var(--size-16);
	color: var(--color-dark);
	opacity: 0.8;
	line-height: 1.5;
}

/* Timeline Process Styles */
.workflow-timeline {
	position: relative;
	padding-left: 35px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.workflow-timeline::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: rgba(50, 48, 46, 0.08);
}

.timeline-step-item {
	position: relative;
}

.timeline-step-badge {
	position: absolute;
	left: -35px;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color-white);
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	z-index: 1;
	box-shadow: 0 0 0 4px var(--color-white);
	transition: var(--transition-bounce);
}

.timeline-step-item:hover .timeline-step-badge {
	background: var(--color-primary);
	color: var(--color-white);
	transform: scale(1.1);
}

.timeline-step-content {
	background: var(--color-light);
	border-radius: 8px;
	padding: 25px;
	transition: var(--transition-smooth);
}

.timeline-step-item:hover .timeline-step-content {
	background: var(--color-white);
	box-shadow: 0 15px 30px rgba(50, 48, 46, 0.04);
	border: 1px solid rgba(50, 48, 46, 0.08);
}

.timeline-step-title {
	font-size: var(--size-18);
	color: var(--color-dark);
	margin-bottom: 10px;
}

.timeline-step-desc {
	font-size: var(--size-16);
	color: var(--color-dark);
	opacity: 0.8;
	line-height: 1.5;
}

/* Sidebar Info Card */
.sidebar-fact-card {
	background: var(--color-white);
	border: 1px solid rgba(50, 48, 46, 0.08);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 20px 40px rgba(50, 48, 46, 0.04);
}

.sidebar-fact-title {
	font-size: var(--size-18);
	color: var(--color-dark);
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(50, 48, 46, 0.08);
	padding-bottom: 15px;
}

.fact-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 25px;
}

.fact-item-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--size-16);
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(50, 48, 46, 0.08);
}

.fact-item-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.fact-label {
	color: var(--color-dark);
	opacity: 0.6;
	font-weight: 500;
}

.fact-value {
	color: var(--color-dark);
	font-weight: 700;
	text-align: right;
}

/* Sidebar Services Navigation List */
.sidebar-navigation-card {
	background: var(--color-light);
	border-radius: 12px;
	padding: 30px;
}

.sidebar-navigation-title {
	font-size: var(--size-18);
	color: var(--color-dark);
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(50, 48, 46, 0.08);
	padding-bottom: 15px;
}

.sidebar-nav-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 18px;
	background: var(--color-white);
	border-radius: 6px;
	border: 1px solid rgba(50, 48, 46, 0.04);
	color: var(--color-dark);
	font-weight: 600;
	font-size: var(--size-16);
	transition: var(--transition-smooth);
}

.sidebar-nav-link:hover {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	transform: translateX(5px);
}

.sidebar-nav-link svg {
	width: 16px;
	height: 16px;
	transition: var(--transition-smooth);
}

.sidebar-nav-link:hover svg {
	transform: translateX(3px);
}

/* Single Service CTA Banner Section */
.service-cta-banner {
	background: var(--color-dark);
	color: var(--color-white);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.service-cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(238, 67, 41, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.service-cta-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.service-cta-content h2 {
	font-size: var(--size-46);
	margin-bottom: 20px;
}

.service-cta-content p {
	font-size: var(--size-18);
	opacity: 0.85;
	margin-bottom: 30px;
	line-height: 1.6;
}

/* Responsiveness overrides */
@media (max-width: 992px) {
	.service-layout-grid {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 50px 0;
	}

	.service-sidebar {
		position: static;
	}
	
	.service-hero-title-detail {
		font-size: var(--size-46);
	}
}

@media (max-width: 768px) {
	.highlights-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.service-hero-title-detail {
		font-size: var(--size-26);
	}
	
	.service-cta-content h2 {
		font-size: var(--size-26);
	}
}
