.services {
	padding: 0;
}
.content-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}
.intro-section {
	padding: 100px 0;
	position: relative;
	padding-bottom: 0;
}
.intro-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 50px;
	align-items: center;
}
.intro-title {
	font-size: 30px;
	font-weight: 800;
	color: #0a0a0a;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: 1px;
}
.intro-text {
	font-size: 16px;
	color: #4a5568;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: 1px;
}
.services-section {
	padding: 8rem 0;
}
.services-header {
	text-align: center;
	margin-bottom: 6rem;
}
.services-title {
	font-size: 45px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 2rem;
	letter-spacing: 1px;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
}
.service-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 4rem 3rem;
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #c01e2e, #e53e3e, #fc8181);
}
.service-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(192, 30, 46, 0.03) 0%, transparent 70%);
	z-index: -1;
}
.service-number {
	position: absolute;
	top: -20px;
	right: 3rem;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #c01e2e, #e53e3e);
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 2rem;
	box-shadow: 0 10px 30px rgba(192, 30, 46, 0.3);
}
.service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #c01e2e, #e53e3e);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	font-size: 20px;
	color: white;
}
.service-title {
	font-size: 25px;
	font-weight: 500;
	color: #0a0a0a;
	margin-bottom: 1.5rem;
	letter-spacing: 1px;
}
.service-description {
	color: #4a5568;
	margin-bottom: 2.5rem;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 1px;
}
.service-highlights {
	background: linear-gradient(135deg, #f7fafc, #edf2f7);
	border-radius: 16px;
	padding: 2.5rem;
	border-left: 4px solid #c01e2e;
}
.highlights-title {
	font-weight: 500;
	color: #0a0a0a;
	margin-bottom: 1.5rem;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.highlights-list {
	list-style: none;
}
.highlights-list li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 1rem;
	color: #2d3748;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 30px;
}
.highlights-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #c01e2e;
	font-weight: 900;
	font-size: 1.2rem;
}
.why-choose-section {
	padding: 60px;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(192, 30, 46, 0.3)), url('../images/img/services/bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.why-choose-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(192, 30, 46, 0.1) 50%, transparent 70%);
	z-index: 1;
}
.why-choose-content {
	text-align: center;
	position: relative;
	z-index: 2;
}
.why-choose-badge {
	background: linear-gradient(135deg, #c01e2e, #e53e3e);
	color: white;
	padding: 1rem 3rem;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	margin-bottom: 3rem;
	box-shadow: 0 10px 30px rgba(192, 30, 46, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.2);
}
.why-choose-title {
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 900;
	margin-bottom: 2rem;
	letter-spacing: 1px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, #ffffff, #f7fafc, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.why-choose-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	line-height: 1.6;
}
.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 4rem;
	margin-top: 6rem;
}
.why-choose-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 4rem 3rem;
	text-align: center;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.why-choose-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #c01e2e, #e53e3e, #fc8181);
}
.why-choose-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(192, 30, 46, 0.3);
	border-color: rgba(192, 30, 46, 0.5);
}
.why-choose-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #c01e2e, #e53e3e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 25px;
	color: white;
	box-shadow: 0 10px 30px rgba(192, 30, 46, 0.4);
}
.why-choose-item h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.why-choose-item p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
}
.cta-section {
	padding: 8rem 0;
	text-align: center;
	position: relative;
	padding-bottom: 100px;
}
.cta-content {
	background: linear-gradient(135deg, #c01e2e, #e53e3e, #fc8181);
	border-radius: 32px;
	padding: 6rem 4rem;
	color: white;
	position: relative;
	overflow: hidden;
}
.cta-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}
.cta-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
	color: #fff;
}
.cta-text {
	font-size: 16px;
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	letter-spacing: 1px;
	line-height: 30px;
}
.cta-button {
	display: inline-block;
	background: #ffffff;
	color: #c01e2e;
	padding: 1.5rem 3rem;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 1px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}
@media (max-width: 1024px) {
	.intro-content {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}        
	.services-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.content-wrapper {
		padding: 0 1rem;
	}        
	.intro-section,
	.services-section,
	.why-choose-section,
	.cta-section {
		padding: 40px 0;
	}        
	.service-card {
		padding: 3rem 2rem;
	}        
	.services-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}        
	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}        
	.cta-content {
		padding: 4rem 2rem;
	}
}
@media (max-width: 480px) {
	.intro-title,
	.services-title,
	.why-choose-title,
	.cta-title {
		font-size: 2.5rem;
		margin-bottom: 0;
	}        
	.service-card {
		padding: 2rem 1.5rem;
	}
	.service-number {
		width: 60px;
		height: 60px;
		font-size: 20px;
		top: -7px;
	}
}