/* 🚀 ULTRA-MODERN DIJITAL ÇÖZÜMLER - NEXT-GEN DESIGN */

/* ===== GLOBAL STYLES ===== */
:root {
	--primary-gradient: linear-gradient(135deg, #008ccc 0%, #00afff 100%);
	--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	--dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	
	--bg-gradient-modern: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	--glass-bg: rgba(255, 255, 255, 0.25);
	--glass-border: rgba(255, 255, 255, 0.18);
	
	--text-primary: #2c3e50;
	--text-secondary: #7f8c8d;
	--text-light: #bdc3c7;
	
	--shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.08);
	--shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
	--shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
	--shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
	
	--border-radius: 24px;
	--transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	
	/* Eksik değişkenler eklendi */
	--accent-color: #667eea;
	--accent-color-hover: #5a67d8;
	
	/* Fix for 100vh issues on mobile browsers */
	--vh: 1vh;
}

/* ===== BACKGROUND GRADIENTS ===== */
.bg--gradient-modern {
	background: var(--bg-gradient-modern);
	position: relative;
	min-height: 100vh;
	height: auto;
	padding-bottom: 80px; 
	z-index: 1;
}

/* Override global section z-index for digital solutions */
section.section.bg--gradient-modern {
	/* z-index: 99999 !important; */
}

.bg--gradient-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 60%, rgba(67, 233, 123, 0.08) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

/* ===== HEADER STYLES ===== */
.digital-header {
	padding: 80px 0 60px;
	position: relative;
	z-index: 20;
	opacity: 1;
	visibility: visible;
}

.digital-subtitle {
	display: inline-block;
	padding: 8px 24px;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	transition: var(--transition-smooth);
}

.digital-subtitle:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.digital-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 20px;
	line-height: 1.2;
}

.gradient-text {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.gradient-text::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-gradient);
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform 0.6s ease;
}

.digital-header:hover .gradient-text::after {
	transform: scaleX(1);
}

.digital-description {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ===== MODERN CARDS GRID ===== */
.digital-solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	padding: 40px 0;
	position: relative;
	/* z-index: 99999; */
	opacity: 1;
	visibility: visible;
}

/* ===== ULTRA-MODERN CARDS ===== */
.digital-solution-card {
	position: relative;
	height: 400px;
	border-radius: var(--border-radius);
	overflow: hidden;
	cursor: pointer;
	transition: var(--transition-bounce);
	will-change: transform;
	opacity: 1;
	visibility: visible;
	transform: translateZ(0);
	/* Başlangıçta animasyonları durdur */
	animation-play-state: paused;
	/* Ensure proper stacking context */
	/* z-index: 99999; */
}

/* Ensure cards are always on top */
.digital-solution-card {
	position: relative;
	/* z-index: 99999 !important; */
}

.card-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--glass-bg);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--glass-border);
	transition: var(--transition-smooth);
	z-index: 2;
}

.card-content {
	position: relative;
	height: 100%;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	z-index: 8;
}

/* ===== CARD ICONS ===== */
.card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: var(--transition-bounce);
}

.card-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
	transform: rotate(45deg) translateX(-100%);
	transition: transform 0.6s ease;
}

.card-icon i {
	font-size: 36px;
	color: white;
	z-index: 1;
	transition: var(--transition-smooth);
}

/* ===== CARD TYPOGRAPHY ===== */
.card-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
	text-align: center;
	transition: var(--transition-smooth);
}

.card-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	text-align: center;
	margin-bottom: 25px;
	transition: var(--transition-smooth);
}

/* ===== FEATURE TAGS ===== */
.card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: auto;
}

.feature-tag {
	padding: 6px 12px;
	background: rgba(102, 126, 234, 0.1);
	border: 1px solid rgba(102, 126, 234, 0.2);
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	color: #667eea;
	transition: var(--transition-smooth);
}

/* ===== CARD OVERLAY - THE MAGIC ===== */
.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: white;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateY(100%);
	transition: var(--transition-bounce);
	opacity: 0;
	z-index: 99999;
}

.card-overlay h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}

.card-overlay p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: center;
	opacity: 0.9;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.feature-list li {
	display: flex;
	align-items: center;
	padding: 6px 0;
	font-size: 14px;
	transform: translateX(-20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.feature-list li i {
	margin-right: 10px;
	color: #4ade80;
	font-size: 12px;
}

/* ===== MODERN BUTTON ===== */
.modern-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 12px 24px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition-smooth);
	margin: 0 auto;
	width: fit-content;
	position: relative;
	overflow: hidden;
}

.modern-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s;
}

.modern-btn:hover::before {
	left: 100%;
}

.modern-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-btn i {
	transition: transform 0.3s ease;
}

.modern-btn:hover i {
	transform: translateX(5px);
}

/* ===== HOVER INTERACTIONS ===== */
.digital-solution-card:hover .card-overlay {
	/* transform: translateY(0); */
	opacity: 1;
	/* z-index: 99999 !important; */
}

.digital-solution-card:hover .card-background {
	background: rgba(255, 255, 255, 0.4);
	box-shadow: var(--shadow-strong);
}

.digital-solution-card:hover .card-icon {
	transform: scale(1.1) rotate(360deg);
	box-shadow: var(--shadow-glow);
}

.digital-solution-card:hover .card-icon::before {
	transform: rotate(45deg) translateX(100%);
}

.digital-solution-card:hover .card-title {
	color: #667eea;
	transform: translateY(-2px);
}

.digital-solution-card:hover .feature-tag {
	background: rgba(102, 126, 234, 0.2);
	border-color: rgba(102, 126, 234, 0.4);
	transform: translateY(-2px);
}

.digital-solution-card:hover .card-overlay {
	transform: translateY(0);
	opacity: 1;
	z-index: 99999 !important;
}

.digital-solution-card:hover .feature-list li {
	transform: translateX(0);
	opacity: 1;
}

.digital-solution-card:hover .feature-list li:nth-child(1) { transition-delay: 0.1s; }
.digital-solution-card:hover .feature-list li:nth-child(2) { transition-delay: 0.2s; }
.digital-solution-card:hover .feature-list li:nth-child(3) { transition-delay: 0.3s; }
.digital-solution-card:hover .feature-list li:nth-child(4) { transition-delay: 0.4s; }

/* Mobilde hover efektlerini devre dışı bırak */
@media (max-width: 768px) {
	.digital-solution-card:hover {
		transform: none;
	}
	
	.digital-solution-card:hover .card-icon {
		transform: none;
	}
	
	.digital-solution-card:hover .card-title {
		transform: none;
	}
	
	.digital-solution-card:hover .feature-tag {
		transform: none;
	}
}

/* ===== CARD SPECIFIC GRADIENTS ===== */
.digital-solution-card:nth-child(1) .card-icon {
	background: var(--primary-gradient);
}

.digital-solution-card:nth-child(2) .card-icon {
	background: var(--secondary-gradient);
}

.digital-solution-card:nth-child(2) .card-overlay {
	background: linear-gradient(135deg, rgba(240, 147, 251, 0.95), rgba(245, 87, 108, 0.95));
}

.digital-solution-card:nth-child(3) .card-icon {
	background: var(--success-gradient);
}

.digital-solution-card:nth-child(3) .card-overlay {
	background: linear-gradient(135deg, rgba(79, 172, 254, 0.95), rgba(0, 242, 254, 0.95));
}

.digital-solution-card:nth-child(4) .card-icon {
	background: var(--warning-gradient);
}

.digital-solution-card:nth-child(4) .card-overlay {
	background: linear-gradient(135deg, rgba(67, 233, 123, 0.95), rgba(56, 249, 215, 0.95));
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

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

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.digital-solution-card {
	/* animation: float 4s ease-in-out infinite; */
	animation-play-state: running;
	will-change: transform;
}

.digital-solution-card:nth-child(2) { animation-delay: -1.5s; }
.digital-solution-card:nth-child(3) { animation-delay: -3s; }
.digital-solution-card:nth-child(4) { animation-delay: -4.5s; }

/* Sayfa yüklendiğinde animasyonları durdur */
.digital-solution-card.loading {
	animation-play-state: paused;
}

/* Yüklendikten sonra animasyonları başlat */
.digital-solution-card.loaded {
	animation-play-state: running;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
	.digital-solutions-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
}

/* Fix for mobile viewport and scroll issues */
@media (max-width: 768px) {
    /* Fix 100vh issues on mobile */
    .bg--gradient-modern {
        min-height: 100vh; /* Fallback for browsers that handle vh correctly */
        height: auto; /* Allow content to determine height */
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-attachment: scroll; /* Prevent background from being fixed */
    }
    
    /* Disable problematic animations on mobile */
    .digital-solution-card {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }
    
    /* Prevent scroll-triggered layout shifts */
    .digital-header,
    .digital-solutions-grid {
        transform: none;
        backface-visibility: hidden;
        perspective: none;
    }
    
    /* Disable hover effects that can cause layout shifts */
    .digital-solution-card:hover {
        transform: none !important;
    }
    
    .digital-solution-card:hover .card-icon,
    .digital-solution-card:hover .card-title,
    .digital-solution-card:hover .feature-tag {
        transform: none !important;
    }
    
    /* Fix background position issues */
    .card-background {
        background-position: center center !important;
        background-size: cover;
    }
    
    /* Prevent in-viewport class from causing layout shifts */
    .digital-solution-card.in-viewport {
        transform: none !important;
    }

    .card-overlay {
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
    }

    .digital-solution-card:hover .card-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
	.digital-header {
		padding: 60px 0 40px;
	}
	
	.digital-title {
		font-size: 2.5rem;
	}
	
	.digital-solutions-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px 0;
	}
	
	.digital-solution-card {
		height: 350px;
		animation: none; /* Disable floating on mobile */
		transform: none !important;
	}
	
	.card-content {
		padding: 30px 25px;
	}
	
	.card-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.card-icon i {
		font-size: 32px;
	}
	
	.card-title {
		font-size: 20px;
	}
	
	.feature-tag {
		font-size: 11px;
		padding: 4px 10px;
	}
}

@media (max-width: 480px) {
	.digital-header {
		padding: 40px 0 30px;
	}
	
	.digital-title {
		font-size: 2rem;
	}
	
	.digital-description {
		font-size: 16px;
	}
	
	.digital-solution-card {
		height: 320px;
	}
	
	.card-content {
		padding: 25px 20px;
	}
	
	.card-overlay {
		padding: 25px 20px;
	}
	
	.card-features {
		gap: 6px;
	}
	
	.feature-tag {
		font-size: 10px;
		padding: 3px 8px;
	}
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.digital-solution-card:focus-visible {
	outline: 3px solid #667eea;
	outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.digital-solution-card {
	contain: layout style paint;
	/* will-change: transform; */
}

.card-overlay {
	contain: layout style paint;
	/* will-change: transform, opacity; */
}

/* ===== MODERN CONTACT FORM ===== */
.modern-contact-form {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 2rem;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.modern-contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	z-index: -1;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.form-group {
	position: relative;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: white;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.modern-input,
.modern-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 1rem;
	color: white;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.modern-input::placeholder,
.modern-textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.modern-input:focus,
.modern-textarea:focus {
	outline: none;
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.modern-textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

.modern-submit-btn {
	width: 100%;
	padding: 1.25rem 2rem;
	background: linear-gradient(135deg, var(--accent-color) 0%, #8b5cf6 100%);
	border: none;
	border-radius: 1rem;
	color: white;
	font-size: 1.125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.modern-submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.modern-submit-btn:hover::before {
	left: 100%;
}

.modern-submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.modern-submit-btn:active {
	transform: translateY(-1px);
}

.modern-submit-btn i {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.modern-submit-btn:hover i {
	transform: translateX(5px);
}

/* Alert Styles */
.alert {
	display: none;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	margin-bottom: 2rem;
	position: relative;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.closebtn {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.closebtn:hover {
	opacity: 1;
}

/* Responsive Form */
@media (max-width: 768px) {
	.modern-contact-form {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}
	
	.form-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.modern-input,
	.modern-textarea {
		padding: 0.875rem 1.25rem;
		font-size: 0.875rem;
	}
	
	.modern-submit-btn {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

/* ===== DETAILED SERVICE SECTIONS - MODERN REDESIGN ===== */
.service-detail-section {
	margin-bottom: 8rem;
	position: relative;
}

.modern-service-header {
	margin-bottom: 4rem;
}

.service-hero {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 3rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
	backdrop-filter: blur(20px);
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
	z-index: -1;
}

.service-hero:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-hero-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
	position: relative;
	overflow: hidden;
}

.service-hero-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(45deg);
	animation: shimmer 3s infinite;
}

.service-hero-icon i {
	font-size: 2rem;
	color: white;
	z-index: 1;
	position: relative;
}

.service-hero-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.service-hero-content p {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: #6b7280;
	font-weight: 500;
	margin: 0;
}

.modern-service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-feature-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
	backdrop-filter: blur(20px);
	border-radius: 1.5rem;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
	z-index: -1;
}

.service-feature-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.service-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
	transition: all 0.3s ease;
}

.feature-icon i {
	font-size: 1.2rem;
	color: white;
}

.service-feature-card:hover .feature-icon {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.feature-title {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	font-weight: 600;
	color: #1f2937;
	margin: 0;
	line-height: 1.3;
}

.feature-content p {
	font-size: clamp(0.95rem, 1.5vw, 1rem);
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Animations */
@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-detail-section {
	animation: fadeInUp 0.8s ease-out;
}

.modern-service-header {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.modern-service-grid {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive Design */
@media (max-width: 768px) {
	.service-hero {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
		padding: 2rem;
	}

	.service-hero-icon {
		width: 60px;
		height: 60px;
	}

	.service-hero-icon i {
		font-size: 1.5rem;
	}

	.modern-service-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-feature-card {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.service-hero {
		padding: 1.5rem;
	}

	.service-feature-card {
		padding: 1.25rem;
	}

	.feature-card-header {
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}

	.feature-icon {
		width: 45px;
		height: 45px;
	}

	.feature-icon i {
		font-size: 1rem;
	}
}

/* ===== NEW SERVICE LAYOUT ===== */
.service-main-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	margin-bottom: 4rem;
}

/* Sol taraf - Ana bilgiler */
.service-main-info {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 2rem;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	height: fit-content;
}

.service-main-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
	z-index: -1;
}

.service-main-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
	animation: float 6s ease-in-out infinite;
	margin-bottom: 2rem;
}

.service-main-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-main-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.service-main-description {
	margin-bottom: 2rem;
}

.service-main-description p {
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	color: #6b7280;
	line-height: 1.8;
	text-align: justify;
}

.service-main-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.main-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.main-feature:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(10px);
}

.main-feature i {
	color: #10b981;
	font-size: 1.2rem;
}

.main-feature span {
	font-weight: 600;
	color: #374151;
	font-size: 1rem;
}

/* Sağ taraf - 4 detay kutucuğu */
.service-details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.detail-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 1.5rem;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.detail-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
	z-index: -1;
}

.detail-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.15);
}

.detail-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.detail-box:hover .detail-icon {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.detail-title {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.detail-content {
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: #6b7280;
	line-height: 1.6;
	text-align: justify;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
	.service-main-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.service-details-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.service-main-info {
		padding: 2rem;
	}
	
	.service-main-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.service-details-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.detail-box {
		padding: 1.5rem;
	}
	
	.detail-icon {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.service-main-info {
		padding: 1.5rem;
	}
	
	.service-main-title {
		font-size: 1.8rem;
	}
	
	.service-main-subtitle {
		font-size: 1.1rem;
	}
	
	.detail-box {
		padding: 1.25rem;
	}
	
	.detail-title {
		font-size: 1.1rem;
	}
	
	.detail-content {
		font-size: 0.9rem;
	}
}

/* Animation for New Layout */
.service-main-info {
	animation: fadeInUp 0.8s ease-out;
	animation-fill-mode: both;
}

.service-details-grid {
	animation: fadeInUp 0.8s ease-out 0.2s;
	animation-fill-mode: both;
}

.detail-box:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.detail-box:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.detail-box:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.8s both; }
.detail-box:nth-child(4) { animation: fadeInUp 0.6s ease-out 1s both; }

/* Hover Effects */
.service-main-info:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.main-feature:hover i {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

/* Section Spacing */
.service-detail-section + .service-detail-section {
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* Background Variations */
.service-detail-section:nth-child(even) {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 250, 251, 0.8) 100%);
}

.service-detail-section:nth-child(odd) {
	background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* ===== PACKAGES SECTION ===== */
.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.package-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 2rem;
	padding: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	transition: var(--transition-smooth);
	height: fit-content;
}

.package-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}

.package-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.package-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 2;
}

.package-header {
	text-align: center;
	margin-bottom: 2rem;
}

.package-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	position: relative;
	overflow: hidden;
}

.package-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: var(--transition-smooth);
}

.package-card:hover .package-icon::before {
	left: 100%;
}

.package-icon i {
	font-size: 2rem;
	color: white;
	z-index: 2;
	position: relative;
}

.package-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.package-price {
	margin-bottom: 1rem;
}

.price-amount {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.price-period {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.package-features {
	margin-bottom: 2rem;
}

.package-features .feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 1rem;
	transition: var(--transition-smooth);
}

.package-features .feature-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
}

.package-features .feature-item i {
	color: #10b981;
	font-size: 1rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.package-features .feature-item span {
	color: var(--text-primary);
	font-weight: 500;
}

.package-description {
	margin-bottom: 2rem;
}

.package-description p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
}

.package-btn {
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 1rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

.package-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: var(--transition-smooth);
}

.package-btn:hover::before {
	left: 100%;
}

.package-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.package-btn i {
	transition: var(--transition-smooth);
}

.package-btn:hover i {
	transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.packages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.package-card.featured {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.packages-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.package-card.featured {
		grid-column: span 1;
		transform: scale(1);
	}
	
	.package-card.featured:hover {
		transform: translateY(-10px);
	}
	
	.package-card {
		padding: 2rem 1.5rem;
	}
	
	.package-icon {
		width: 60px;
		height: 60px;
	}
	
	.package-icon i {
		font-size: 1.5rem;
	}
	
	.package-title {
		font-size: 1.25rem;
	}
	
	.price-amount {
		font-size: 2rem;
	}
}

/* Animation for package cards */
.package-card {
	animation: fadeInUp 0.6s ease-out;
}

.package-card:nth-child(1) {
	animation-delay: 0.1s;
}

.package-card:nth-child(2) {
	animation-delay: 0.2s;
}

.package-card:nth-child(3) {
	animation-delay: 0.3s;
}

/* Hover effects for feature items */
.package-features .feature-item {
	animation: fadeInUp 0.4s ease-out;
}

.package-features .feature-item:nth-child(1) { animation-delay: 0.1s; }
.package-features .feature-item:nth-child(2) { animation-delay: 0.2s; }
.package-features .feature-item:nth-child(3) { animation-delay: 0.3s; }
.package-features .feature-item:nth-child(4) { animation-delay: 0.4s; }
.package-features .feature-item:nth-child(5) { animation-delay: 0.5s; }
.package-features .feature-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== MODERN BUSINESS MODEL - HORIZONTAL CARDS ===== */
.modern-business-model {
    background-color: #f8f9fa; /* Light gray background */
    padding: 80px 0;
}

.horizontal-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent; /* For hover effect */
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--accent-color);
}

.step-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-card-icon {
    transform: scale(1.1) rotate(15deg);
}

.step-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
