.amenities-section {
	padding-top: 60px;
	padding-bottom: 0px;
	max-width: 1380px;
	margin: 0 auto;
}
.amenities-title {
	text-align: left;
	font-size: 2.5rem;
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 50px;
	position: relative;
}
.amenities-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 80px;
	height: 4px;
	background: #01963a;
	border-radius: 2px;
}
.amenities-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 25px;
	margin-top: 40px;
}
.amenity-item {
	background: #fff;
	padding: 30px 20px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	position: relative;
	overflow: hidden;
}
.amenity-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #01963a;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.amenity-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.amenity-item:hover::before {
	transform: scaleX(1);
}
.amenity-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	display: block;
	color: #01963a;
}
.amenity-name {
	font-size: 16px;
	font-weight: 400;
	color: #2c3e50;
	margin-top: 10px;
	letter-spacing: 1px;
}
/* Mobile Responsive Design */
@media (max-width: 1024px) {
	.amenities-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}
@media (max-width: 768px) {
	.amenities-section {
		padding-top: 40px;
	}
	.amenities-title {
		font-size: 2rem;
		margin-bottom: 35px;
	}
	.amenities-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	.amenity-item {
		padding: 25px 15px;
	}
	.amenity-icon {
		font-size: 2rem;
	}
	.amenity-name {
		font-size: 0.9rem;
	}
}
@media (max-width: 480px) {
	.amenities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.amenity-item {
		padding: 20px 12px;
	}
	.amenity-icon {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.amenity-name {
		font-size: 14px;
	}
}