/* Service Pages Dedicated CSS */
/* This file contains all styling specific to service pages to avoid conflicts with main site CSS */

/* Service Hero Section */
.service-hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	overflow: hidden;
	padding: 80px 20px 20px;
}

.service-hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	z-index: 2;
	position: relative;
}

.service-badge {
	display: inline-block;
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
	color: #0a0a0a;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-badge.premium {
	background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.service-icon-large {
	width: 120px;
	height: 120px;
	margin: 0 auto 2rem;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #d4af37;
}

.service-title {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.service-description {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 3rem;
	line-height: 1.6;
}

/* Service Features Grid - Updated for 3 items */
.service-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.service-features-grid .feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-align: left;
}

.service-features-grid .feature-item:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateY(-2px);
}

.service-features-grid .feature-item i {
	color: #d4af37;
	font-size: 1.2rem;
	flex-shrink: 0;
}

/* Service Details Section - Enhanced Design */
.service-details-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
	position: relative;
	overflow: hidden;
}

.service-details-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.service-details-content {
	position: relative;
	z-index: 2;
}

.service-details-content h2 {
	font-size: 3rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.service-details-content h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
	border-radius: 2px;
}

.service-details-content > p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	margin-bottom: 5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	font-weight: 300;
}

/* Note: Service process styling now uses homepage how-it-works-section styles from styles.css */

/* Service CTA Section */
.service-cta-section {
	padding: var(--section-padding) 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-content p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.cta-feature i {
	color: #d4af37;
	font-size: 1.1rem;
}

/* Enhanced Mobile Responsive for Service Pages */
@media (max-width: 768px) {
	.service-details-section {
		padding: 80px 0;
	}

	.service-title {
		font-size: 2.5rem;
	}

	.service-description {
		font-size: 1.1rem;
	}

	.service-features-grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		align-items: center;
		max-width: 100%;
	}

	.service-features-grid .feature-item {
		width: 100%;
		max-width: 350px;
	}

	.service-details-content h2 {
		font-size: 2.2rem;
	}

	.service-details-content > p {
		font-size: 1.1rem;
		margin-bottom: 3rem;
	}

	/* Process step styles now handled by homepage CSS */

	.cta-content h2 {
		font-size: 2rem;
	}

	.cta-features {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.service-details-section {
		padding: 60px 0;
	}

	.service-details-content h2 {
		font-size: 1.8rem;
	}

	.service-details-content > p {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.service-features-grid .feature-item {
		padding: 12px 15px;
	}

	.service-features-grid .feature-item span {
		font-size: 0.9rem;
	}

	.process-step {
		padding: 1.5rem 1rem;
		margin: 0 0.5rem;
	}
}

/* Animation Keyframes for Enhanced UX */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Add subtle animations to process steps */
.step {
	animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) {
	animation-delay: 0.1s;
}
.step:nth-child(3) {
	animation-delay: 0.2s;
}
.step:nth-child(5) {
	animation-delay: 0.3s;
}
.step:nth-child(7) {
	animation-delay: 0.4s;
}

/* Note: Step number styling now handled by homepage CSS for consistent positioning */

/* Improved visual hierarchy */
.service-details-content h2::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
	border-radius: 1px;
}

/* Google Knowledge Panel & Media Partners Section */
.gkp-media-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
	position: relative;
	overflow: hidden;
}

.gkp-media-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.gkp-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 4rem;
	position: relative;
	z-index: 2;
}

.gkp-image-container {
	position: relative;
	text-align: center;
}

.gkp-image {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(212, 175, 55, 0.2);
	transition: all 0.3s ease;
}

.gkp-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	border-color: rgba(212, 175, 55, 0.4);
}

.gkp-badge {
	position: absolute;
	top: -15px;
	right: -15px;
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
	color: #0a0a0a;
	padding: 12px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
	animation: pulse 2s infinite;
}

.gkp-badge i {
	font-size: 1.1rem;
}

.media-partners h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.media-partners p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.partners-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.partner-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 12px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.partner-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
	transition: left 0.5s ease;
}

.partner-link:hover::before {
	left: 100%;
}

.partner-link:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateX(5px);
	color: #d4af37;
}

.partner-link i {
	color: #d4af37;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.partner-link:hover i {
	transform: translateX(3px);
}

/* Mobile Responsive for GKP Section */
@media (max-width: 768px) {
	.gkp-media-section {
		padding: 80px 0;
	}

	.gkp-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.gkp-badge {
		position: static;
		display: inline-flex;
		margin-top: 1rem;
	}

	.media-partners h3 {
		font-size: 1.6rem;
	}

	.partners-grid {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.gkp-media-section {
		padding: 60px 0;
	}

	.gkp-content {
		gap: 2rem;
	}

	.media-partners h3 {
		font-size: 1.4rem;
	}

	.partner-link {
		padding: 12px 16px;
		font-size: 0.9rem;
	}
}
