/* ==========================================
   SERVICE PAGE STYLES
   ========================================== */

/* Service Hero */
.service-hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 10rem 0 6rem;
	background: var(--bg-primary);
}

.service-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.service-hero-bg .orb-1 {
	position: absolute;
	top: 20%;
	left: 10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(212, 165, 116, 0.1); /* Soft Gold */
	filter: blur(120px);
	animation: pulse 6s ease-in-out infinite;
}

.service-hero-bg .orb-2 {
	position: absolute;
	bottom: 10%;
	right: 10%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(251, 191, 36, 0.05); /* Amber */
	filter: blur(150px);
	animation: pulse 8s ease-in-out infinite 2s;
}

.service-hero-content {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.hero-text-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-image-col {
	position: relative;
	perspective: 1000px;
}

.hero-3d-image {
	width: 100%;
	height: auto;
	border-radius: 24px;
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(212, 165, 116, 0.1) inset;
	transform-style: preserve-3d;
	will-change: transform;
}

.service-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(212, 165, 116, 0.1);
	border: 1px solid rgba(212, 165, 116, 0.2);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--brand-primary);
	margin-bottom: 1.5rem;
}

.service-badge i {
	font-size: 0.9rem;
}

.service-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.service-hero-desc {
	font-size: 1.15rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 2.5rem;
	max-width: 600px;
}

.service-hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Overview Section */
.service-overview {
	padding: 5rem 0;
}

.overview-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
	align-items: center;
}

.overview-text p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.overview-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.overview-stat {
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 16px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.3s ease;
}

.overview-stat:hover {
	border-color: var(--brand-primary);
	box-shadow: 0 10px 40px var(--shadow-sm);
	transform: translateY(-3px);
}

.overview-stat-number {
	display: block;
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--gradient-start),
		var(--gradient-end)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.25rem;
}

.overview-stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Features Section */
.service-features {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.feature-card {
	background: var(--bg-primary);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 2rem;
	transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	border-color: var(--brand-primary);
	box-shadow: 0 15px 50px var(--shadow-md);
	transform: translateY(-4px);
}

.feature-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(
		135deg,
		rgba(251, 191, 36, 0.12),
		rgba(251, 191, 36, 0.04)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
	transform: scale(1.1);
}

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Process Section */
.service-process {
	padding: 5rem 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	position: relative;
}

.process-steps::before {
	content: "";
	position: absolute;
	top: 35px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--border-light),
		var(--brand-primary),
		var(--border-light)
	);
	z-index: 0;
}

.process-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.process-number {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--bg-primary);
	border: 2px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-primary);
	margin: 0 auto 1.25rem;
	transition: all 0.3s ease;
}

.process-step:hover .process-number {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
	border-color: var(--brand-primary);
	transform: scale(1.1);
}

.process-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.process-step p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Service CTA */
.service-cta {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.service-cta-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.service-cta-content h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	margin-bottom: 1rem;
}

.service-cta-content p {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
	.service-hero {
		padding: 6rem 0 3rem;
		min-height: auto;
	}

	.service-hero h1 {
		font-size: 1.75rem;
	}

	.overview-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.process-steps::before {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps::before {
		display: none;
	}
}
