.reviews-page {
	position: relative;
	min-height: 100vh;
	/* padding: 80px 0; */
	/* background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%); */
	overflow: hidden;
}

.reviews-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.reviews-bg-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(38, 97, 197, 0.08) 0%, rgba(15, 145, 129, 0.08) 100%);
	animation: floatCircle 25s infinite ease-in-out;
}

.reviews-bg-circle-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.reviews-bg-circle-2 {
	width: 300px;
	height: 300px;
	bottom: -50px;
	right: -50px;
	animation-delay: 8s;
}

.reviews-bg-circle-3 {
	width: 250px;
	height: 250px;
	top: 40%;
	right: 10%;
	animation-delay: 16s;
}

@keyframes floatCircle {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.08;
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
		opacity: 0.12;
	}
	66% {
		transform: translate(-30px, 30px) scale(0.9);
		opacity: 0.1;
	}
}

.reviews-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.reviews-header {
	text-align: center;
	margin-bottom: 60px;
}

.reviews-title {
	font-size: 48px;
	font-weight: 900;
	color: #333333;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 50%, #ffc107 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.reviews-subtitle {
	font-size: 20px;
	color: #666666;
	margin: 0;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.review-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2661c5 0%, #0F9181 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(38, 97, 197, 0.15);
	border-color: rgba(38, 97, 197, 0.2);
}

.review-card:hover::before {
	opacity: 1;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.review-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(38, 97, 197, 0.3);
}

.review-avatar-text {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.review-author-info {
	flex: 1;
}

.review-author-name {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 0 0 8px 0;
}

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

.review-star {
	width: 18px;
	height: 18px;
	color: #ffc107;
	flex-shrink: 0;
}

.review-star-filled {
	color: #ffc107;
}

.review-content {
	position: relative;
}

.review-text {
	font-size: 16px;
	line-height: 1.7;
	color: #555555;
	margin: 0 0 20px 0;
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #e8e8e8;
	font-size: 14px;
	color: #888888;
}

.review-date {
	font-weight: 500;
}

.review-car {
	font-weight: 600;
	color: #2661c5;
}

@media (max-width: 1200px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 968px) {
	.reviews-page {
		padding: 60px 0;
	}
	
	.reviews-container {
		padding: 0 20px;
	}
	
	.reviews-title {
		font-size: 36px;
	}
	
	.reviews-subtitle {
		font-size: 18px;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.review-card {
		padding: 25px;
	}
}

@media (max-width: 640px) {
	.reviews-page {
		padding: 40px 0;
	}
	
	.reviews-title {
		font-size: 28px;
		letter-spacing: 1px;
	}
	
	.reviews-subtitle {
		font-size: 16px;
	}
	
	.reviews-header {
		margin-bottom: 40px;
	}
	
	.review-card {
		padding: 20px;
	}
	
	.review-avatar {
		width: 50px;
		height: 50px;
	}
	
	.review-avatar-text {
		font-size: 20px;
	}
	
	.review-author-name {
		font-size: 18px;
	}
	
	.review-text {
		font-size: 15px;
	}
	
	.review-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}
