
.use-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid #e0e0e0;
	background: #ffffff;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 40px 25px;
	height: 100%;
	min-height: 320px;
	box-sizing: border-box;
}

.use-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(188, 0, 0, 0.1), transparent);
	transition: left 0.5s ease;
}

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

.use-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 25px 50px rgba(188, 0, 0, 0.2);
	border-color: #bc0000;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.use-card-icon {
	transition: transform 0.4s ease, filter 0.4s ease;
	margin-bottom: 20px;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-radius: 50%;
}

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

.use-card:hover .use-card-icon img {
	filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.use-card h3 {
	transition: color 0.3s ease;
	margin-bottom: 15px;
	margin-top: 0;
	flex-shrink: 0;
}

.use-card:hover h3 {
	color: #bc0000 !important;
}

.use-card-description {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.use-card:hover .use-card-description {
	opacity: 1;
	max-height: 200px;
	margin-top: 15px;
	margin-bottom: 0;
}

.use-cards-row {
	margin-left: -15px;
	margin-right: -15px;
}

.use-cards-row::before,
.use-cards-row::after {
	content: "";
	display: table;
	clear: both;
}

.use-cards-row > [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
}

.use-cards-row .use-card {
	margin-bottom: 0;
	width: 100%;
}

@media (max-width: 991px) {
	.use-card {
		min-height: 300px;
		padding: 35px 20px;
	}
	
	.use-cards-row > [class*="col-"] {
		margin-bottom: 25px;
	}
}

@media (max-width: 767px) {
	.use-cards-row > [class*="col-"] {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	
	.use-card {
		min-height: auto;
		padding: 30px 20px;
	}
	
	.use-card-description {
		opacity: 1;
		max-height: none;
		margin-top: 15px;
	}
}
