/**
 * Service Page Sidebar Layout CSS
 * GRPCMedia Theme
 * Reference: @esk/boyasiz-gocuk-onarim.html
 */

/* Hero Banner - Parallax Effect */
.grpc-hero-banner {
	position: relative;
	background-attachment: fixed !important;
	background-position: center center;
	background-size: cover;
	min-height: 400px;
}

/* Elementor Section - First Section as Hero Banner */
.grpc-elementor-page .elementor-section:first-child {
	position: relative;
	min-height: 450px !important;
	display: flex !important;
	align-items: center !important;
}

/* Hero Banner Section - Custom Class */
.grpc-hero-banner-section {
	position: relative !important;
	min-height: 450px !important;
	display: flex !important;
	align-items: center !important;
}

/* Force background rendering */
.grpc-hero-banner-section .elementor-background-overlay {
	z-index: 0 !important;
	opacity: 1 !important;
}

.grpc-hero-banner-section .elementor-container {
	position: relative !important;
	z-index: 1 !important;
}

/* Ensure background image renders */
.grpc-hero-banner-section.elementor-section {
	background-position: center center !important;
	background-size: cover !important;
	background-attachment: fixed !important;
}

@media (max-width: 768px) {
	.grpc-hero-banner-section.elementor-section {
		background-attachment: scroll !important;
	}
}

/* ============================================================================
   SIDEBAR SERVICES MENU - ULTRA MODERN WITH GLASSMORPHISM
   🇹🇷 TR: Ultra modern sidebar - glassmorphism ve premium animasyonlar
   🇬🇧 EN: Ultra modern sidebar with glassmorphism and premium animations
   🎯 PURPOSE: Premium sidebar navigation with advanced effects
   ============================================================================ */

.elementor-widget-icon-list {
	/* GLASSMORPHISM - Modern cam efekti */
	background: rgba(255, 255, 255, 0.98) !important;
	backdrop-filter: blur(16px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(16px) saturate(180%) !important;
	
	border-radius: 20px !important;
	border: 1px solid rgba(47, 36, 131, 0.15) !important;
	
	/* MULTI-LAYER SHADOW - Premium derinlik */
	box-shadow: 0 12px 40px rgba(47, 36, 131, 0.12),
	            0 4px 16px rgba(0, 0, 0, 0.08),
	            inset 0 1px 0 rgba(255, 255, 255, 0.6),
	            0 0 0 1px rgba(47, 36, 131, 0.05) !important;
	
	overflow: visible !important;
	
	/* PERFORMANCE OPTIMIZATION */
	will-change: transform, box-shadow !important;
	
	/* 3D Transform on load */
	transform: translateZ(0) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.elementor-widget-icon-list:hover {
	box-shadow: 0 16px 48px rgba(47, 36, 131, 0.18),
	            0 6px 20px rgba(0, 0, 0, 0.1),
	            inset 0 1px 0 rgba(255, 255, 255, 0.8),
	            0 0 0 1px rgba(47, 36, 131, 0.1) !important;
	transform: translateY(-2px) translateZ(0) !important;
}

.elementor-widget-icon-list .elementor-icon-list-items {
	list-style: none !important;
	padding: 8px !important; /* Padding azaltıldı */
	margin: 0 !important;
}

/* SIDEBAR MENU ITEMS - KOMPAKT & GÖRÜNÜR */
.elementor-widget-icon-list .elementor-icon-list-item {
	padding: 14px 20px !important; /* Padding azaltıldı */
	border-left: 4px solid transparent !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	background: rgba(255, 255, 255, 0.6) !important;
	margin: 3px 0 !important; /* Margin azaltıldı - aralar daha dar */
	border-radius: 12px !important;
	position: relative !important;
	overflow: hidden !important;
	cursor: pointer !important;
	
	/* DEFAULT STATE - VISIBLE (no opacity 0) */
	opacity: 1 !important;
	transform: translateX(0) !important;
	
	/* PERFORMANCE */
	will-change: transform, background, box-shadow !important;
}

/* OPTIONAL: Subtle entrance animation on page load (very quick) */
@media (prefers-reduced-motion: no-preference) {
	.elementor-widget-icon-list .elementor-icon-list-item {
		animation: subtleFadeIn 0.4s ease-out backwards !important;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(1) { animation-delay: 0.05s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(2) { animation-delay: 0.08s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(3) { animation-delay: 0.11s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(4) { animation-delay: 0.14s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(5) { animation-delay: 0.17s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(6) { animation-delay: 0.2s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(7) { animation-delay: 0.23s !important; }
	.elementor-widget-icon-list .elementor-icon-list-item:nth-child(n+8) { animation-delay: 0.26s !important; }
}

@keyframes subtleFadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.elementor-widget-icon-list .elementor-icon-list-item:last-child {
	margin-bottom: 0 !important;
}

.elementor-widget-icon-list .elementor-icon-list-item:first-child {
	margin-top: 0 !important;
}

/* RIPPLE EFFECT - Click/Hover feedback */
.elementor-widget-icon-list .elementor-icon-list-item:before {
	content: '' !important;
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	width: 0 !important;
	height: 0 !important;
	border-radius: 50% !important;
	background: radial-gradient(circle, rgba(47, 36, 131, 0.4) 0%, transparent 70%) !important;
	transform: translate(-50%, -50%) !important;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
	pointer-events: none !important;
}

/* Hover effect - TEMIZ & DÜZGÜN */
.elementor-widget-icon-list .elementor-icon-list-item:hover {
	background: linear-gradient(135deg, rgba(248, 250, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
	border-left: 4px solid #2F2483 !important;
	transform: translateX(6px) !important; /* Sadece sağa kayma, scale yok */
	
	/* PREMIUM SHADOW */
	box-shadow: 0 8px 28px rgba(47, 36, 131, 0.22),
	            0 2px 12px rgba(47, 36, 131, 0.12),
	            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
	
	padding-left: 26px !important;
}

.elementor-widget-icon-list .elementor-icon-list-item:hover:before {
	width: 300px !important;
	height: 300px !important;
	opacity: 0 !important;
}

/* Active item - TEMIZ & BELİRGİN */
.elementor-widget-icon-list .elementor-icon-list-item.elementor-active {
	background: linear-gradient(135deg, rgba(232, 244, 255, 0.98) 0%, rgba(240, 248, 255, 1) 100%) !important;
	border-left: 4px solid #2F2483 !important;
	font-weight: 600 !important;
	position: relative !important;
	
	/* GLOWING EFFECT */
	box-shadow: 0 6px 24px rgba(47, 36, 131, 0.25),
	            0 2px 12px rgba(47, 36, 131, 0.15),
	            inset 0 1px 0 rgba(255, 255, 255, 1),
	            inset -4px 0 8px rgba(47, 36, 131, 0.1) !important;
	
	transform: translateX(4px) !important; /* Sadece hafif kayma, scale yok */
	padding-left: 26px !important;
}

/* Active indicator - Animated badge */
.elementor-widget-icon-list .elementor-icon-list-item.elementor-active:after {
	content: '' !important;
	position: absolute !important;
	right: 18px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 10px !important;
	height: 10px !important;
	background: linear-gradient(135deg, #2F2483, #1e1850) !important;
	border-radius: 50% !important;
	box-shadow: 0 0 0 0 rgba(47, 36, 131, 0.7) !important;
	animation: pulseRing 2s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

@keyframes pulseRing {
	0% {
		box-shadow: 0 0 0 0 rgba(47, 36, 131, 0.7);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(47, 36, 131, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(47, 36, 131, 0);
	}
}

/* FOCUS STATE - Accessibility */
.elementor-widget-icon-list .elementor-icon-list-item:focus-within {
	outline: 2px solid #2F2483 !important;
	outline-offset: 3px !important;
	background: rgba(47, 36, 131, 0.05) !important;
}

.elementor-widget-icon-list .elementor-icon-list-item a {
	display: flex !important;
	align-items: center !important;
	text-decoration: none !important;
	position: relative !important;
	z-index: 1 !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Icon styling - KOMPAKT */
.elementor-widget-icon-list .elementor-icon-list-icon {
	color: #2F2483 !important;
	font-size: 16px !important;
	margin-right: 14px !important; /* Azaltıldı */
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	width: 36px !important; /* Küçültüldü */
	height: 36px !important; /* Küçültüldü */
	min-width: 36px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	
	/* GLASSMORPHISM FOR ICON */
	background: linear-gradient(135deg, rgba(47, 36, 131, 0.08), rgba(47, 36, 131, 0.12)) !important;
	backdrop-filter: blur(8px) !important;
	
	border-radius: 10px !important;
	border: 1px solid rgba(47, 36, 131, 0.15) !important;
	
	box-shadow: 0 2px 8px rgba(47, 36, 131, 0.1),
	            inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
	
	/* PERFORMANCE */
	will-change: transform, background !important;
}

.elementor-widget-icon-list .elementor-icon-list-item:hover .elementor-icon-list-icon {
	color: #ffffff !important;
	background: linear-gradient(135deg, #2F2483, #1e1850) !important;
	
	/* HAFIF TRANSFORM - Saçma sapan görünüm yok */
	transform: scale(1.05) !important;
	
	/* GLOWING SHADOW */
	box-shadow: 0 8px 24px rgba(47, 36, 131, 0.4),
	            0 4px 12px rgba(47, 36, 131, 0.25),
	            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
	
	border-color: rgba(255, 255, 255, 0.3) !important;
}

.elementor-widget-icon-list .elementor-icon-list-item.elementor-active .elementor-icon-list-icon {
	color: #ffffff !important;
	background: linear-gradient(135deg, #2F2483, #1e1850) !important;
	transform: none !important; /* Aktif durumda transform yok */
	
	box-shadow: 0 6px 20px rgba(47, 36, 131, 0.35),
	            0 2px 10px rgba(47, 36, 131, 0.2),
	            inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
	
	/* ANIMATED RING */
	animation: iconPulse 3s ease-in-out infinite !important;
}

@keyframes iconPulse {
	0%, 100% {
		box-shadow: 0 6px 20px rgba(47, 36, 131, 0.35),
		            0 2px 10px rgba(47, 36, 131, 0.2),
		            inset 0 1px 0 rgba(255, 255, 255, 0.4);
	}
	50% {
		box-shadow: 0 8px 28px rgba(47, 36, 131, 0.45),
		            0 4px 14px rgba(47, 36, 131, 0.3),
		            inset 0 1px 0 rgba(255, 255, 255, 0.5);
	}
}

/* Text styling - Modern & Readable */
.elementor-widget-icon-list .elementor-icon-list-text {
	color: #2d3748 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	line-height: 1.5 !important;
	letter-spacing: 0.2px !important;
}

.elementor-widget-icon-list .elementor-icon-list-item:hover .elementor-icon-list-text {
	color: #2F2483 !important;
	font-weight: 600 !important;
	transform: translateX(2px) !important;
}

.elementor-widget-icon-list .elementor-icon-list-item.elementor-active .elementor-icon-list-text {
	color: #2F2483 !important;
	font-weight: 700 !important;
}

/* Sidebar Widget Container */
.elementor-widget-icon-list .elementor-widget-container {
	padding: 0 !important;
}

/* Sidebar Title - Modern & Eye-catching */
.elementor-widget-icon-list .elementor-widget-title {
	background: linear-gradient(135deg, #2F2483 0%, #1e1850 100%) !important;
	color: #FFFFFF !important;
	padding: 22px 25px !important;
	margin: 0 !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	text-align: center !important;
	letter-spacing: 0.8px !important;
	text-transform: uppercase !important;
	position: relative !important;
	box-shadow: 0 4px 12px rgba(47, 36, 131, 0.25) !important;
}

.elementor-widget-icon-list .elementor-widget-title:before {
	content: '' !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 60px !important;
	height: 3px !important;
	background: rgba(255, 255, 255, 0.5) !important;
	border-radius: 2px !important;
}

/* Sidebar Widgets Spacing */
.elementor-widget:not(:last-child) {
	margin-bottom: 30px;
}

/* Content Area */
.grpc-service-content {
	background: #FFFFFF;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.grpc-service-content h1,
.grpc-service-content h2,
.grpc-service-content h3,
.grpc-service-content h4,
.grpc-service-content h5 {
	color: #1a1a1a;
	margin-top: 30px;
	margin-bottom: 15px;
}

.grpc-service-content h3 {
	font-size: 28px;
	font-weight: 700;
}

.grpc-service-content h5 {
	font-size: 20px;
	font-weight: 600;
	color: var(--grpc-primary, #2F2483);
}

.grpc-service-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
}

.grpc-service-content p.lead {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	line-height: 1.7;
}

.grpc-service-content ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.grpc-service-content ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 16px;
	color: #666;
}

.grpc-service-content ul li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--grpc-primary, #2F2483);
	font-weight: bold;
	font-size: 18px;
}

/* Service Image */
.grpc-service-content img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Breadcrumb Styling */
.grpc-breadcrumb {
	font-size: 15px;
	margin-top: 20px;
}

.grpc-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.grpc-breadcrumb a:hover {
	color: #FFFFFF;
}

.grpc-breadcrumb span {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 10px;
}

.grpc-breadcrumb .current {
	color: var(--grpc-primary, #2F2483);
	font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
	.grpc-service-content {
		padding: 30px;
	}
}

@media (max-width: 1024px) {
	.elementor-widget-icon-list .elementor-icon-list-item {
		padding: 16px 20px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-text {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.grpc-hero-banner {
		background-attachment: scroll !important;
		min-height: 300px;
	}
	
	.grpc-service-content {
		padding: 25px;
	}
	
	.grpc-service-content h3 {
		font-size: 24px;
	}
	
	.elementor-widget-icon-list {
		margin-bottom: 20px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-item {
		padding: 14px 18px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-item:hover {
		transform: translateX(4px);
	}
	
	.elementor-widget-icon-list .elementor-icon-list-text {
		font-size: 14px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-icon {
		font-size: 14px;
		margin-right: 12px;
	}
}

@media (max-width: 480px) {
	.elementor-widget-icon-list .elementor-icon-list-item {
		padding: 12px 15px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-text {
		font-size: 13px;
	}
	
	.elementor-widget-icon-list .elementor-icon-list-icon {
		font-size: 13px;
		margin-right: 10px;
	}
}

