/* Property Details Info Section - Custom Styling */

.property-info-container {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0;
}

.property-info-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 15px;
	background: #f9f9f9;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.property-info-item:hover {
	background: #fff;
	border-color: #e0e0e0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.property-info-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	border-radius: 50%;
	margin-bottom: 12px;
	font-size: 24px;
}

.property-info-icon-wrapper i {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.property-info-label {
	font-size: 12px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	display: block;
}

.property-info-value {
	font-size: 16px;
	font-weight: 700;
	color: #222;
	line-height: 1.4;
	word-break: break-word;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.property-info-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}

	.property-info-item {
		padding: 18px 12px;
	}

	.property-info-icon-wrapper {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin-bottom: 10px;
	}

	.property-info-value {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.property-info-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.property-info-item {
		padding: 15px 10px;
	}

	.property-info-icon-wrapper {
		width: 40px;
		height: 40px;
		font-size: 18px;
		margin-bottom: 8px;
	}

	.property-info-label {
		font-size: 11px;
		margin-bottom: 5px;
	}

	.property-info-value {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.property-info-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.property-info-item {
		padding: 12px 8px;
	}

	.property-info-icon-wrapper {
		width: 35px;
		height: 35px;
		font-size: 16px;
		margin-bottom: 6px;
	}

	.property-info-label {
		font-size: 10px;
		margin-bottom: 4px;
	}

	.property-info-value {
		font-size: 13px;
	}
}

/* Color Variations for Different Icons */
.property-info-item:nth-child(1) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.property-info-item:nth-child(2) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
}

.property-info-item:nth-child(3) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
}

.property-info-item:nth-child(4) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
}

.property-info-item:nth-child(5) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #FA709A 0%, #FEE140 100%);
}

.property-info-item:nth-child(6) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.property-info-item:nth-child(7) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.property-info-item:nth-child(8) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.property-info-item:nth-child(n+9) .property-info-icon-wrapper {
	background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}
