/* Technical Specifications Section Styles */
.specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.spec-category {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.spec-category:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.spec-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease;
}

.spec-category:hover .spec-icon {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.spec-icon svg {
	width: 24px;
	height: 24px;
}

.spec-header h4 {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.5px;
}

.spec-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 8px 0;
}

.spec-label {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Poppins', sans-serif;
	min-width: 80px;
	flex-shrink: 0;
}

.spec-value {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	text-align: right;
	line-height: 1.4;
}

/* Tablet Design */
@media only screen and (max-width: 1024px) {
	.specs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

/* Mobile Design */
@media only screen and (max-width: 768px) {
	.specs-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}
	
	.spec-category {
		padding: 20px;
	}
	
	.spec-header {
		margin-bottom: 15px;
		padding-bottom: 12px;
	}
	
	.spec-icon {
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}
	
	.spec-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.spec-header h4 {
		font-size: 16px;
	}
	
	.spec-item {
		flex-direction: column;
		gap: 5px;
	}
	
	.spec-label {
		min-width: auto;
		font-size: 13px;
	}
	
	.spec-value {
		font-size: 13px;
		text-align: left;
	}
}
