/* From: css/modern-dijital-hizmetler.css */
/* Modern Dijital Hizmetler Page Styles */

.service-main-layout-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 1200px) {
    .service-main-layout-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-main-layout-reverse .service-main-info {
    order: 2;
}

.service-main-layout-reverse .service-details-grid {
    order: 1;
}

/* From: css/digital-solutions.css */
/* 🚀 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: var(--primary-gradient);
	-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.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.detail-box::before {
	display: none;
}

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

.detail-icon {
	width: auto;
	height: auto;
	background: transparent;
	border-radius: 0;
	display: block;
	font-size: 2rem;
	box-shadow: none;
	margin-bottom: 0;
	transition: all 0.3s ease;
    flex-shrink: 0;
}

.detail-icon i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Important for background-clip to work */
}

.detail-box:hover .detail-icon {
	transform: none;
	box-shadow: none;
}

.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;
}

/* From: css/restyle.css */
@media (min-width: 801px) {
    .hamburger {
      display: none !important;
    }
  }
.page-footer__menu {
    display: flex;
    flex-direction: column;
}

.page-footer__menu li {
    width: 100%;
}

.d-flex {
    display: flex;
}

.center {
    justify-content: center;
}

.max-200 {
    max-width: 200px;
}

.testimonials__nav .slick-list {
    border-radius: 0;
}

@media (max-width: 992px) {
    .center {
        justify-content: flex-start;
    }
}

@media (max-width: 1140px) {
    .d-none-lg {
        display: none !important;
    }
}

.truck-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Add your custom styles here */

/* Modern About Section Styles - Compact & Image Effect */
.about-modern-section.compact-section {
    padding: 50px 0;
    background-color: #f0f2f5; /* Light grey background for a clean look */
    overflow: hidden;
    position: relative;
    color: #333 !important; /* Ensure default text color for the section is dark */
}

.about-modern-section .container {
    position: relative;
    z-index: 2;
}

.about-modern-section .section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.about-modern-section .section-heading .pre-title {
    color: #007bff !important; /* Ensure visibility */
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 1 !important;
}

.about-modern-section .section-heading .main-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #212529 !important; /* Ensure visibility */
    line-height: 1.2;
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

.about-modern-section .section-heading .main-title::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: rgba(33, 37, 41, 0.03);
    z-index: -1;
    white-space: nowrap;
}

.about-modern-section .content-block p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333 !important; /* Make it darker and ensure visibility */
    margin-bottom: 15px;
    opacity: 1 !important;
}

.about-modern-section .content-block .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-modern-section .content-block .feature-list li {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333 !important; /* Make it darker and ensure visibility */
    margin-bottom: 8px;
    position: relative;
    padding-left: 35px;
    opacity: 1 !important;
}

.about-modern-section .content-block .feature-list li::before {
    content: '✔';
    color: #28a745;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.image-block-with-effect {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-block-with-effect img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-block-with-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    transition: left 0.7s ease;
}

.image-block-with-effect:hover::before {
    left: 100%;
}

.image-block-with-effect:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for compact section */
@media (max-width: 991.98px) {
    .about-modern-section.compact-section {
        padding: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .about-modern-section.compact-section {
        padding: 20px 0;
    }
    .about-modern-section .section-heading .main-title {
        font-size: 2em;
    }
}


.logo-scroller {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%; /* Ensure it takes full width */
}

.logo-scroller:before,
.logo-scroller:after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-scroller:before {
    left: 0;
    background: linear-gradient(to left, rgba(26, 42, 58, 0), #1a2a3a);
}

.logo-scroller:after {
    right: 0;
    background: linear-gradient(to right, rgba(26, 42, 58, 0), #1a2a3a);
}

.logo-scroller-inner {
    display: flex; /* Use flexbox for horizontal layout */
    width: fit-content; /* Allow content to define width */
    animation: scroll-left 30s linear infinite;
}

.logo-item {
    flex-shrink: 0; /* Prevent items from shrinking */
    margin: 0 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 150px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section background and heading adjustments */
.section.bg--lgray {
    background: #1a2a3a;
    color: #ffffff;
}

.modern-heading.heading--center .heading__title {
    color: #ffffff;
}

.modern-heading.heading--center .heading__pre-title {
    color: rgba(255, 255, 255, 0.7);
}

.modern-heading.heading--center .heading__layout {
    color: rgba(255, 255, 255, 0.05);
}

.modern-heading.heading--center .color--green {
    color: #00a8e6;
}

/* Hero and CTA Section Spacing */

.hero-section {
    padding: 100px 0 60px;
    text-align: center;
}

.cta-section {
    padding: 80px 0;
    background-color: #00a8e6;
    color: #fff;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .button {
    background-color: #fff;
    color: #00a8e6;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none; /* Ensure button is styled correctly */
    display: inline-block; /* Ensure button is styled correctly */
}

.cta-section .button:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* From: layout-styles.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif; /* Changed font to Roboto for a cleaner look */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.main {
    flex: 1 0 auto;
}

.modern-footer {
    background-color: #1a2a3a; /* Site ana koyu mavi rengi */
    color: #bdc3c7;           /* Okunaklılık için hafif kırık beyaz */
    padding: 40px 0;
    text-align: center;
    flex-shrink: 0;
}

.modern-footer a {
    color: #ecf0f1; /* Linkler için daha parlak beyaz */
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    color: #3498db; /* Vurgulu mavi link rengi */
    text-decoration: none;
}

.modern-footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.modern-footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
}

.modern-footer .col-md-4 {
    flex: 1;
    min-width: 280px; /* Prevent excessive squeezing */
    padding: 15px;
    text-align: left; /* Default to left align on desktop */
}

.modern-footer .col-md-4:first-child {
    text-align: left;
}

.modern-footer-logo {
    max-width: 220px; /* Adjust logo size as needed */
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .modern-footer .row {
        flex-direction: column;
        align-items: center; /* Center items on mobile */
    }
    .modern-footer .col-md-4 {
        margin-bottom: 30px;
        text-align: center; /* Center align on mobile */
    }
    .modern-footer .col-md-4:last-child {
        margin-bottom: 0;
    }
    .modern-footer .col-md-4:first-child {
        text-align: center; /* Center logo and text on mobile */
    }
}

.modern-footer-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a8e6; /* Sitedeki ana renklerden biri */
    display: inline-block;
}

.modern-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer ul li {
    margin-bottom: 10px;
}

.modern-footer .contact-info i {
    margin-right: 10px;
}

.modern-social-icons {
    margin-top: 15px;
}

.modern-social-icons a {
    margin: 0 12px;
    font-size: 1.4em;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    text-decoration: underline;
}

.modern-footer .text-muted {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #2c3e50; /* Biraz daha açık bir ayırıcı */
    color: #7f8c8d; /* Okunaklı soluk renk */
    font-size: 0.9em;
    width: 100%;
}

/* Modern Hero Section Styles */
.modern-hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background-attachment: scroll;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%); /* Slightly darker overlay */
    z-index: 1;
}

.modern-hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.modern-hero-section .hero-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.15); /* Slightly less transparent background */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.modern-hero-section .hero-content h1 {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Stronger text shadow */
    animation: fadeInDown 1s ease-out;
}

.modern-hero-section .hero-content h1 span {
    color: #3498db;
}

.modern-hero-section .hero-content p {
    font-size: 1.3em;
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.modern-hero-section .hero-content .button .btn {
    background-color: #3498db;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: zoomIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.modern-hero-section .hero-content .button .btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.modern-hero-section .hero-icons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.modern-hero-section .hero-icons img {
    width: 65px; /* Slightly larger icon size */
    height: 65px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.modern-hero-section .hero-icons img:hover {
    transform: translateY(-12px) scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)); /* Even brighter glow on hover */
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .modern-hero-section {
        height: 100vh; /* Keep full height */
    }
    .modern-hero-section .hero-content h1 {
        font-size: 3em;
    }
    .modern-hero-section .hero-content p {
        font-size: 1.1em;
    }
    .modern-hero-section .hero-icons {
        gap: 30px;
    }
    .modern-hero-section .hero-icons img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        height: 100vh; /* Keep full height */
    }

    .modern-hero-section .hero-content h1 {
        font-size: 2.2em;
    }

    .modern-hero-section .hero-content p {
        font-size: 1em;
    }

    .modern-hero-section .hero-icons {
        gap: 20px;
    }

    .modern-hero-section .hero-icons img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .modern-hero-section {
        height: 100vh; /* Keep full height */
    }

    .modern-hero-section .hero-content h1 {
        font-size: 1.8em;
    }

    .modern-hero-section .hero-content p {
        font-size: 0.9em;
    }

    .modern-hero-section .hero-icons {
        gap: 15px;
    }

    .modern-hero-section .hero-icons img {
        width: 35px;
        height: 35px;
    }
}

/* Footer Menu Tags */
.footer-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 0.9em;
    color: #ecf0f1 !important; /* Ensure color overrides general 'a' tag color */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.footer-tag:hover {
    background-color: #00a8e6;
    color: #ffffff !important;
    text-decoration: none;
}

/* Modern Navbar Styles */
.page-header-iim {
    background: #1a2a3a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-header-iim.scrolled {
    background: rgba(26, 42, 58, 0.9);
    backdrop-filter: blur(10px);
}

.page-header-iim .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.page-header-iim .logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.page-header-iim .logo:hover {
    transform: scale(1.05);
}

.page-header-iim .main-nav {
    display: flex;
    align-items: center;
}

.page-header-iim .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.page-header-iim .main-nav ul li {
    margin: 0 15px;
    position: relative;
}

.page-header-iim .main-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.page-header-iim .main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a8e6;
    transition: width 0.3s ease;
}

.page-header-iim .main-nav ul li a:hover,
.page-header-iim .main-nav ul li a.active {
    color: #00a8e6;
}

.page-header-iim .main-nav ul li a:hover::after,
.page-header-iim .main-nav ul li a.active::after {
    width: 100%;
}

.page-header-iim .dropdown-content {
    background: #1a2a3a;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.page-header-iim .dropdown-content a {
    color: #ffffff;
    padding: 10px 20px;
}

.page-header-iim .dropdown-content a:hover {
    background: #00a8e6;
}

.page-header-iim .hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .page-header-iim .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a2a3a;
        flex-direction: column;
        padding: 10px 0;
    }

    .page-header-iim .main-nav.active {
        display: flex;
    }

    .page-header-iim .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .page-header-iim .main-nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .page-header-iim .hamburger {
        display: block;
    }
}

/* Modern CTA Button */
.modern-cta-btn {
    background: linear-gradient(135deg, #00a8e6, #008ccc);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 230, 0.4);
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 230, 0.6);
}

/* Modern CTA Section (urun-gruplari style) */
.cta-section {
    padding: 80px 0;
    background-color: #00a8e6;
    color: #fff;
}
.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
.cta-section .button {
    background-color: #fff;
    color: #00a8e6;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.cta-section .button:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* From: inline style of dijital-hizmetler.php */
main.main {
    padding-top: 100px;
}

.hero-section .container {
    text-align: center;
}

/* FINAL & DEFINITIVE STYLES */
.sticky-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}
.sticky-image {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
}
.sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sticky-content {
    /* Container for the scrolling content */
}

/* Content Block Styles */
.sticky-content .service-main-info {
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.sticky-content .service-main-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008ccc 0%, #00afff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 140, 204, 0.25);
}
.sticky-content .service-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}
.sticky-content .service-main-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.sticky-content .service-main-description p {
    color: #374151;
    line-height: 1.7;
}
.sticky-content .service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.sticky-content .detail-box {
    background: #ffffff;
    border: none;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.sticky-content .detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.sticky-content .detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #008ccc 0%, #00afff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}
.sticky-content .detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.sticky-content .detail-content {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-container {
        grid-template-columns: 1fr;
    }
    .sticky-image {
        position: static;
        aspect-ratio: 16 / 9;
        margin-bottom: 30px;
    }
    .sticky-content .service-details-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================== */
/* ===== OVERRIDE TO REMOVE ALL BOX STYLES ===== */
/* =============================================== */

.service-main-info,
.detail-box {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.detail-box {
    margin-bottom: 1.5rem !important;
}

.service-main-info::before,
.detail-box::before {
    display: none !important;
}

.service-main-info:hover,
.detail-box:hover {
	transform: none !important;
	box-shadow: none !important;
	background: transparent !important;
}

.service-main-icon,
.detail-icon {
	background: transparent !important;
	box-shadow: none !important;
    color: #007bff !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.service-main-icon {
    font-size: 2.2rem !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 15px !important;
}

.detail-icon {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}
