/**
 * ===========================================
 *    MODERN HOMEPAGE STYLES
 *    ===========================================
 *
 * @format
 */

/* Hero Modern */
.hero-modern {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

.hero-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(37, 99, 235, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(147, 51, 234, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 20%,
			rgba(59, 130, 246, 0.08) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
	animation: float 15s infinite ease-in-out;
}

.shape-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	top: 10%;
	left: 5%;
	animation-delay: 0s;
	opacity: 0.1;
}

.shape-2 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	bottom: 15%;
	right: 10%;
	animation-delay: 2s;
	opacity: 0.1;
}

.shape-3 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #06b6d4, #0891b2);
	top: 60%;
	left: 15%;
	animation-delay: 4s;
	opacity: 0.08;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 30px) scale(0.9);
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: white;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	animation: fadeInUp 0.8s ease;
}

.hero-badge i {
	color: #fbbf24;
}

.hero-title-modern {
	font-size: 64px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 25px;
	color: var(--dark-color);
	animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
	background: linear-gradient(135deg, #2563eb, #7c3aed, #db2777);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.hero-description-modern {
	font-size: 20px;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 40px;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

.hero-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 50px;
	animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: white;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-hero-secondary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: white;
	color: var(--primary-color);
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
	background: #f8fafc;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 20px;
	animation: fadeInUp 0.8s ease 1s both;
}

.trust-avatars {
	display: flex;
	align-items: center;
}

.trust-avatars img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid white;
	margin-left: -12px;
	transition: transform 0.3s ease;
}

.trust-avatars img:first-child {
	margin-left: 0;
}

.trust-avatars img:hover {
	transform: scale(1.1);
	z-index: 10;
}

.trust-count {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	margin-left: -12px;
	border: 3px solid white;
}

.trust-text {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.trust-stars {
	color: #fbbf24;
	font-size: 14px;
}

.trust-text p {
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
	margin: 0;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	height: 600px;
	animation: fadeInRight 1s ease 0.5s both;
}

.visual-card {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
	background: white;
}

.visual-card:hover {
	transform: scale(1.05);
}

.visual-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.card-overlay i {
	font-size: 24px;
}

.card-1 {
	width: 280px;
	height: 320px;
	top: 0;
	left: 0;
	z-index: 3;
	animation: cardFloat1 5s ease-in-out infinite;
}

.card-2 {
	width: 240px;
	height: 280px;
	top: 100px;
	right: 80px;
	z-index: 2;
	animation: cardFloat2 6s ease-in-out infinite;
}

.card-3 {
	width: 260px;
	height: 300px;
	bottom: 0;
	right: 0;
	z-index: 1;
	animation: cardFloat3 7s ease-in-out infinite;
}

@keyframes cardFloat1 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes cardFloat2 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes cardFloat3 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.floating-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: white;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	font-weight: 600;
	font-size: 14px;
	z-index: 4;
	animation: badgeFloat 3s ease-in-out infinite;
}

.badge-1 {
	top: 80px;
	right: 20px;
	color: #059669;
}

.badge-1 i {
	color: #059669;
}

.badge-2 {
	bottom: 120px;
	left: 40px;
	color: #2563eb;
}

.badge-2 i {
	color: #2563eb;
}

@keyframes badgeFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.hero-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 80px;
	fill: white;
}

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

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

/* Trusted By Section */
.trusted-by {
	padding: 60px 0;
	background: white;
	overflow: hidden;
	position: relative;
}

.trusted-title {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 40px;
}

.trusted-by .container {
	overflow: hidden;
	position: relative;
}

.trusted-logos {
	display: flex;
	align-items: center;
	gap: 80px;
	width: max-content;
}

/* Mouse hover'da animasyonu durdur */
.trusted-logos:hover {
	animation-play-state: paused;
}

.trusted-logos img {
	height: 50px;
	width: auto;
	opacity: 0.5;
	filter: grayscale(100%);
	transition: all 0.3s ease;
	flex-shrink: 0;
	user-select: none;
	-webkit-user-drag: none;
}

.trusted-logos img:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.1);
}

/* Services Modern */
.services-modern {
	padding: 100px 0;
	background: #f8fafc;
}

.section-header-modern {
	text-align: center;
	margin-bottom: 80px;
}

.section-badge {
	display: inline-block;
	padding: 8px 20px;
	background: #dbeafe;
	color: #2563eb;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.section-header-modern h2 {
	font-size: 48px;
	font-weight: 800;
	color: var(--dark-color);
	line-height: 1.2;
	margin-bottom: 20px;
}

.section-header-modern p {
	font-size: 18px;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

.services-grid-modern {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card-modern {
	background: white;
	border-radius: 20px;
	padding: 40px;
	text-decoration: none;
	color: inherit;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: default;
	display: block;
	pointer-events: none;
}

.service-card-modern > * {
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

.service-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
	pointer-events: none;
}

.service-card-modern:hover::before {
	opacity: 1;
}

/* Featured kart için beyaz overlay'i devre dışı bırak */
.service-card-modern.featured::before {
	display: none;
}

.service-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-color: #2563eb;
}

.service-card-modern.featured {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: white;
	border-color: #dc2626;
	box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
	position: relative;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern.featured:hover {
	background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #ef4444 100%);
	box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4),
		0 0 40px rgba(239, 68, 68, 0.3);
	transform: translateY(-10px) scale(1.02);
	border-color: #a855f7;
}

/* Hover durumunda yazıların okunabilirliği */
.service-card-modern.featured:hover h3 {
	color: white;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.6s ease;
}

.service-card-modern.featured:hover > p {
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.6s ease;
}

.service-card-modern.featured h3 {
	color: white;
	transition: all 0.6s ease;
}

.service-card-modern.featured .service-icon-modern {
	background: white;
	transition: all 0.6s ease;
}

.service-card-modern.featured .service-icon-modern i {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-card-modern.featured .service-features span {
	color: white;
	font-weight: 500;
}

.service-card-modern.featured:hover .service-features span {
	color: white;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.service-card-modern.featured .service-features i {
	color: white;
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.25);
	color: white;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	backdrop-filter: blur(10px);
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-icon-modern {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.gradient-1 {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.gradient-2 {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.gradient-3 {
	background: linear-gradient(135deg, #ec4899, #db2777);
}
.gradient-4 {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}
.gradient-5 {
	background: linear-gradient(135deg, #10b981, #059669);
}
.gradient-6 {
	background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-icon-modern i {
	font-size: 32px;
	color: white;
}

.service-card-modern h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.service-card-modern > p {
	font-size: 15px;
	color: #64748b;
	margin-bottom: 25px;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.service-card-modern.featured > p {
	color: rgba(255, 255, 255, 0.95);
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.service-features span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475569;
	font-weight: 500;
}

.service-features i {
	color: #10b981;
	font-size: 12px;
}

.service-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #f1f5f9;
	border-radius: 50%;
	margin-left: auto;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.service-card-modern:hover .service-arrow {
	background: #2563eb;
	transform: translateX(5px);
}

.service-card-modern.featured .service-arrow {
	background: rgba(255, 255, 255, 0.2);
}

.service-arrow i {
	color: #64748b;
	font-size: 16px;
	transition: color 0.3s ease;
}

.service-card-modern:hover .service-arrow i,
.service-card-modern.featured .service-arrow i {
	color: white;
}

/* Why Choose Modern */
.why-choose-modern {
	padding: 100px 0;
	background: white;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.lead-text {
	font-size: 18px;
	line-height: 1.8;
	color: #475569;
	margin: 30px 0 40px;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.feature-item-modern {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.feature-icon-check {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, #dbeafe, #bfdbfe);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
	font-size: 20px;
}

.feature-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.feature-content p {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}

.btn-outline {
	padding: 14px 32px;
	border: 2px solid #2563eb;
	color: #2563eb;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: #2563eb;
	color: white;
	transform: translateY(-2px);
}

.btn-text {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.btn-text:hover {
	gap: 15px;
}

/* Why Choose Visual */
.why-choose-visual {
	position: relative;
	height: 500px;
}

.visual-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	height: 100%;
}

.visual-item {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	background: white;
}

.visual-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visual-item.item-1 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.visual-item.item-2 {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.visual-item.item-3 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.experience-badge {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	padding: 30px 40px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 15px;
}

.exp-number {
	font-size: 48px;
	font-weight: 800;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.exp-text {
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	line-height: 1.4;
}

/* Testimonials Modern */
.testimonials-modern {
	padding: 100px 0;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-testimonial {
	background: linear-gradient(135deg, #1e3a8a, #1e40af);
	color: white;
}

.testimonial-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.testimonial-rating {
	color: #fbbf24;
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 30px;
	font-style: italic;
}

.featured-testimonial .testimonial-text {
	color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.author-info h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.featured-testimonial .author-info h4 {
	color: white;
}

.author-info p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

.featured-testimonial .author-info p {
	color: rgba(255, 255, 255, 0.7);
}

/* CTA Modern */
.cta-modern {
	padding: 100px 0;
	background: white;
}

.cta-box {
	background: linear-gradient(135deg, #1e3a8a, #1e40af, #7c3aed);
	border-radius: 30px;
	padding: 80px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
	top: -200px;
	right: -200px;
	border-radius: 50%;
}

.cta-content-modern {
	position: relative;
	z-index: 1;
}

.cta-content-modern h2 {
	font-size: 42px;
	font-weight: 800;
	color: white;
	margin-bottom: 15px;
}

.cta-content-modern > p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
}

.cta-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
}

.cta-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	font-weight: 500;
	font-size: 15px;
}

.cta-features i {
	color: #93c5fd;
	font-size: 18px;
}

.cta-action {
	position: relative;
	z-index: 1;
	text-align: center;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 40px;
	background: white;
	color: #1e40af;
	border-radius: 12px;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	margin-bottom: 15px;
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	margin: 0;
}

/* Responsive Design - Modern Homepage */
@media (max-width: 1200px) {
	.hero-title-modern {
		font-size: 52px;
	}

	.hero-grid {
		gap: 60px;
	}

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

@media (max-width: 968px) {
	.hero-modern {
		padding: 100px 0 60px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.hero-visual {
		height: 500px;
	}

	.hero-title-modern {
		font-size: 42px;
	}

	.section-header-modern h2 {
		font-size: 36px;
	}

	.services-grid-modern {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card-modern {
		padding: 25px;
	}

	.service-card-modern h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service-card-modern p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.service-features {
		flex-direction: column;
		gap: 8px;
	}

	.service-features span {
		font-size: 13px;
	}

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

	.service-icon-modern i {
		font-size: 28px;
	}

	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.why-choose-visual {
		order: -1;
	}

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

	.cta-box {
		flex-direction: column;
		text-align: center;
		padding: 60px 40px;
	}

	.cta-features {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.hero-title-modern {
		font-size: 36px;
	}

	.hero-description-modern {
		font-size: 16px;
	}

	.hero-stats {
		flex-wrap: wrap;
	}

	.stat-divider {
		display: none;
	}

	.hero-visual {
		height: 400px;
	}

	.card-1,
	.card-2,
	.card-3 {
		width: 220px !important;
		height: 260px !important;
	}

	.trusted-logos {
		gap: 30px;
	}

	.trusted-logos img {
		height: 40px;
	}

	.cta-content-modern h2 {
		font-size: 32px;
	}
}

@media (max-width: 640px) {
	.hero-badge {
		font-size: 12px;
		padding: 8px 16px;
	}

	.hero-title-modern {
		font-size: 28px;
	}

	.hero-description-modern {
		font-size: 15px;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-label {
		font-size: 12px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		width: 100%;
		justify-content: center;
	}

	.hero-visual {
		height: 350px;
	}

	.card-1 {
		width: 180px !important;
		height: 220px !important;
	}

	.card-2 {
		width: 160px !important;
		height: 200px !important;
		right: 20px !important;
	}

	.card-3 {
		width: 170px !important;
		height: 210px !important;
	}

	.floating-badge {
		font-size: 11px;
		padding: 8px 14px;
	}

	.section-header-modern h2 {
		font-size: 28px;
	}

	.section-header-modern p {
		font-size: 15px;
	}

	.service-card-modern {
		padding: 30px;
	}

	.cta-content-modern h2 {
		font-size: 24px;
	}

	.cta-content-modern > p {
		font-size: 15px;
	}

	.btn-cta {
		padding: 16px 32px;
		font-size: 16px;
	}
}
