/**
 * Features Section Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.features-section {
	padding: 5rem 0;
	background-color: #fff;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
}

.section-description {
	font-size: 1.125rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: #0073aa;
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	font-weight: 700;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.feature-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.features-section {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-card {
		padding: 1.5rem;
	}
}
