/**
 * Landing Page Styles (index.cfm)
 */

.hero-section {
	background: #4b986c;
	color: white;
	padding: 2rem 0 3rem 0;
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.hero-section {
		padding: 5rem 0;
	}
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.4;
}

.feature-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	background: white;
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 3rem;
	background: linear-gradient(135deg, #4b986c 0%, #928163 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s ease;
}

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

.step-circle {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4b986c 0%, #928163 100%);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(75, 152, 108, 0.3);
}

.step-circle:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(75, 152, 108, 0.4);
}

.cta-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 4rem 0;
}

.btn-hero {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-icon {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}
