.sec-service{
	padding: 40px 0;
}
.service-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 16px;
	margin-bottom: 16px;
	position: relative;
	transition: all 0.3s ease;
}
.service-info__brief ul li {
    list-style: disc;
    margin-left: 20px;
}
.service-card p {
	padding-bottom: 0;
}

.service-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.service-card__main {
	display: flex;
	gap: 16px;
	margin-bottom: 12px;
}

.service-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid #f1f2f6;
	font-size: 13px;
}


.service-image {
	position: relative;
	flex-shrink: 0;
	width: 200px;
	height: 150px;
	border-radius: 8px;
	line-height: 1;
}

.service-image__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.service-image__badge {
	position: absolute;
	top: 8px;
	left: -10px;
	background: var(--color-main);
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 8px;
	display: flex;
	line-height: 1.3;
	align-items: center;
	gap: 4px;
}

.service-image__badge::before {
	content: "";
	width: 10px;
	height: 5px;
	background: var(--color-main);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	position: absolute;
	left: 0;
	top: calc(100% - 1px);
}

.service-image__badge-icon {
	font-size: 12px;
}

.service-image__watermark {
	position: absolute;
	bottom: 6px;
	left: 6px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 12px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 3px;
	line-height: 1.3;
}


.service-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.service-info__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.service-info__company {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-info__name {
	font-size: 23px;
	font-weight: 600;
	color: #262262;
	margin: 0;
}

.service-info__type {
	font-size: 13px;

}

.service-info__price {
	font-size: 18px;
	font-weight: 700;
	color: #e74c3c;
	text-align: right;
}


.rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.rating__star {
	color: #f39c12;
	font-size: 14px;
}

.rating__score {
	font-size: 13px;
	font-weight: 600;

}

.rating__count {
	font-size: 12px;
	color: #7f8c8d;
}



.schedule {
	display: flex;
	align-items: center;
	gap: 12px;
}
.schedule__list{
	gap: 5px;
}
.schedule__list-item{
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 0 5px;
    position: relative;
    text-transform: capitalize;
    background-color: rgb(255 107 0 / 9%);
    padding: 5px 10px;
    border-radius: 5px;
}
.schedule__route {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.schedule__time {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
}

.schedule__location {
	font-size: 13px;
	color: #7f8c8d;
	white-space: nowrap;
}

.schedule__separator {
	color: #bdc3c7;
	font-size: 12px;
}

.schedule__duration {
	font-size: 12px;
	color: #7f8c8d;
	background: #f8f9fa;
	padding: 2px 6px;
	border-radius: 3px;
}

.schedule__availability {
	font-size: 13px;
	color: var(--color-main);
	font-weight: 500;
}

/* Action Buttons Block */
.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.actions__info-btn {
	background: var(--color-main);
	border: 1px solid var(--color-main);
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.gap-10{
	gap: 10px;
}
.actions__info-btn:hover {
	background: white;
	color: var(--color-main);
}

.actions__book-btn {
	background: var(--color-main2);
	color: white;
	border: 1px solid var(--color-main2);
	padding: 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.actions__book-btn:hover {
	background: var(--color-main2);
	transform: translateY(-1px);
}

.warning {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #e74c3c;
	font-size: 12px;
	font-weight: 500;
}

.warning__icon {
	font-size: 14px;
}
.service-prices{
	gap: 10px;
}
.service-prices__item{
	background: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

@media (max-width: 768px) {
	.service-card {
		padding: 12px;
	}

	.service-card__main {
		flex-direction: column;
		gap: 12px;
	}

	.service-image {
		width: 100%;
		height: auto;
	}

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

	.service-image__photo {
		aspect-ratio: 3 / 2;
	}

	.service-info__price {
		text-align: left;
	}

	.schedule {
		flex-wrap: wrap;
		gap: 8px;
	}

	.schedule__availability {
		text-align: left;
		order: -1;
		width: 100%;
	}

	.actions {
		align-items: stretch;
	}

	.actions__info-btn,
	.actions__book-btn {
		text-align: center;
		justify-content: center;
	}
}

/* Animation utilities */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-card {
	animation: slideInUp 0.4s ease-out;
}
