/* ===== Animation ===== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.review-form {
	background: #fff;
	padding: 20px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.review-form h2 {
	color: #0473a8;
}

/* ===== Layout ===== */
.review-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media(min-width:992px) {
	.review-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ===== FORM ===== */
.review-form {
	animation: fadeUp .8s ease forwards;
}

.review-form h2 {
	margin: 0 0 10px;
	font-size: 22px;
}

.review-form p {
	font-size: 14px;
	color: #555;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

@media(min-width:768px) {
	.form-row.two {
		grid-template-columns: 1fr 1fr;
	}
}

.review-form input,
.review-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	font-size: 14px;
}

.review-form input,
.review-form textarea:focus {
	outline: none !important;
}

* {
	box-sizing: border-box;
}

.form-row {
	width: 100%;
	display: grid;
	gap: 15px;
}

.form-row.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-form textarea {
	resize: none;
}

/* Stars */
.stars {
	display: flex;
	gap: 6px;
	margin: 10px 0;
}

.star {
	font-size: 40px;
	color: #ddd;
	cursor: pointer;
	transition: .2s;
}

.star.active {
	color: #ff2d2d;
}

.star:hover {
	transform: scale(1.2);
}

/* Button */
.review-form button {
	background: #3c8f1e;
	color: #fff;
	border: none;
	padding: 12px;
	width: 50%;
	font-size: 15px;
	cursor: pointer;
	transition: .3s;
	margin: auto;
	display: flex;
	text-align: center;
	justify-content: center;
}

.review-form button:hover {
	background: #084b7d;
}

/* ===== REVIEWS ===== */
.review-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	animation: fadeUp 1s ease forwards;
}

/* Outer Card */
.review-card {
	background: #ffffff;
	border-radius: 6px;
	padding: 18px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid #00000038;
}

/* Review Text Box */
.review-text {
	background: #fff;
	padding: 15px;
	border-radius: 6px;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

/* Name + Stars Box */
.review-info-box {
	background: #fff;
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0 !important;
}
.review-info-box2 {
	background: #fff;
	padding: 12px 15px;
	display: flex;
	flex-direction: column;
	padding-top: 0 !important;
}

.review-name {
	font-size: 14px;
	font-weight: 600;
}

.review-location {
	font-size: 13px;
	color: #777;
	margin-top: 2px;
}

.review-stars{
	color: #ff2d2d;
	font-size: 30px;
}

/* Hover effect */
.review-card:hover {
	transform: translateY(-4px);
	transition: .3s;
}

/* ===== MORE REVIEWS ===== */
.more-section {
	margin-top: 50px;
	animation: fadeUp 1.2s ease forwards;
}

.more-section h3 {
	margin-bottom: 20px;
}

.more-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media(min-width:768px) {
	.more-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mtt-5 {
	margin-top: 10px;
}