/* Wrapper */
.angie-cta-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* Overlay */
.angie-cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Content */
.angie-cta-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	box-sizing: border-box;
	animation: angieFadeInUp 1s ease-out;
}

/* Headline */
.angie-cta-headline {
	margin: 0 0 20px 0;
	line-height: 1.2;
}

/* Subheadline */
.angie-cta-subheadline {
	margin: 0 0 40px 0;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Buttons Container */
.angie-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

/* Button Base */
.angie-cta-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.angie-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.angie-btn-primary:hover {
	opacity: 0.9;
}

.angie-btn-secondary:hover {
	background-color: rgba(255,255,255,0.1) !important;
}

/* Footer Text */
.angie-cta-footer {
	opacity: 0.9;
	letter-spacing: 0.5px;
}

/* Animation */
@keyframes angieFadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 767px) {
	.angie-cta-headline {
		font-size: 32px !important;
	}
	
	.angie-cta-buttons {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}
	
	.angie-cta-btn {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}
