.warranty-section {
	position: relative;
	background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
	overflow: hidden;
}

.warranty-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(188, 0, 0, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.warranty-section .container {
	position: relative;
	z-index: 1;
}

.warranty-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	opacity: 1;
	transform: translateY(0);
}

.warranty-subtitle {
	font-size: 24px;
	font-weight: 500;
	color: #555;
	margin-bottom: 50px;
}

.warranty-image-wrapper {
	position: relative;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.warranty-image-wrapper::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 20px;
	background: linear-gradient(45deg, #bc0000, #ff4500);
	z-index: -1;
	opacity: 0;
	filter: blur(10px);
	transition: opacity 0.6s ease, filter 0.6s ease;
}

.warranty-image-wrapper:hover::before {
	opacity: 1;
	filter: blur(15px);
}

.warranty-image {
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease;
}

.warranty-image-wrapper:hover .warranty-image {
	transform: scale(1.03);
}

.warranty-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding-left: 20px;
}

.warranty-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-left: 4px solid transparent;
	border-radius: 12px;
	padding: 30px 25px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.warranty-card:hover {
	background: rgba(255, 255, 255, 1);
	border-left-color: #bc0000;
	border-color: rgba(188, 0, 0, 0.2);
	transform: translateX(10px);
	box-shadow: 0 12px 30px rgba(188, 0, 0, 0.15);
}

.warranty-card-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
	transition: all 0.3s ease;
}

.warranty-card:hover .warranty-card-icon {
	background: linear-gradient(135deg, #bc0000 0%, #d32f2f 100%);
	transform: rotate(10deg) scale(1.15);
	box-shadow: 0 8px 20px rgba(188, 0, 0, 0.3);
}

.warranty-card-icon i {
	font-size: 28px;
	color: #bc0000;
	transition: color 0.3s ease;
}

.warranty-card:hover .warranty-card-icon i {
	color: #ffffff;
}

.warranty-card-content {
	flex: 1;
}

.warranty-card-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 15px;
	line-height: 1.3;
}

.warranty-card-text {
	font-size: 17px;
	line-height: 1.7;
	color: #2c3e50;
	margin: 0;
}

@media (max-width: 991px) {
	.warranty-title {
		font-size: 36px;
	}
	
	.warranty-subtitle {
		font-size: 20px;
	}
	
	.warranty-content {
		padding-left: 0;
		margin-top: 30px;
	}
	
	.warranty-card {
		padding: 25px 20px;
	}
	
	.warranty-card-icon {
		width: 50px;
		height: 50px;
	}
	
	.warranty-card-icon i {
		font-size: 24px;
	}
	
	.warranty-card-title {
		font-size: 22px;
	}
	
	.warranty-card-text {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.warranty-title {
		font-size: 28px;
	}
	
	.warranty-subtitle {
		font-size: 18px;
	}
	
	.warranty-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px 20px;
	}
	
	.warranty-card-icon {
		margin-bottom: 15px;
	}
	
	.warranty-card-title {
		font-size: 20px;
	}
	
	.warranty-card-text {
		font-size: 15px;
	}
}
