/**
 * Frontend Styles for Universal CTA Manager
 * Modern, clean design matching professional CTA sections
 */

.ucta-section {
	margin: 80px 0;
	padding: 60px 0;
	background: #ffffff;
	clear: both;
	width: 100%;
}

.ucta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
	box-sizing: border-box;
}

/* Myth Statements - Clean, minimal design */
.ucta-myths {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 50px;
	align-items: center;
}

.ucta-myth {
	background: #f8f9fa;
	padding: 15px 25px;
	border-radius: 6px;
	color: #495057;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	width: 100%;
	max-width: 800px;
	line-height: 1.5;
	letter-spacing: 0.2px;
}

/* Cards Container - Two columns, equal width */
.ucta-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 30px;
	align-items: stretch;
}

/* Individual Card - Clean, modern design */
.ucta-card {
	border: 2px solid #28a745;
	border-radius: 12px;
	padding: 40px 35px;
	text-align: center;
	background: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 320px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
}

.ucta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: transparent;
	transition: background 0.3s ease;
}

.ucta-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	border-color: #218838;
}

.ucta-card:hover::before {
	background: currentColor;
}

/* Card Icon - Larger, more prominent */
.ucta-card-icon {
	margin-bottom: 25px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ucta-card-icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 2;
}

/* Card Title - Bold, clear typography */
.ucta-card-title {
	font-size: 26px;
	font-weight: 700;
	color: #212529;
	margin: 0 0 18px 0;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

/* Card Text - Readable, comfortable spacing */
.ucta-card-text {
	font-size: 16px;
	color: #6c757d;
	line-height: 1.7;
	margin: 0 0 20px 0;
	flex-grow: 1;
	font-weight: 400;
}

/* Card Phone - Subtle styling */
.ucta-card-phone {
	font-size: 15px;
	color: #6c757d;
	margin: 0 0 25px 0;
	font-weight: 400;
	line-height: 1.6;
}

/* Card Button - Modern, rounded, prominent */
.ucta-button {
	display: inline-block;
	padding: 14px 35px;
	background-color: #28a745;
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-top: auto;
	border: none;
	cursor: pointer;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
	position: relative;
	overflow: hidden;
}

.ucta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.ucta-button:hover {
	background-color: #218838;
	transform: translateY(-2px);
	color: #ffffff !important;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.ucta-button:hover::before {
	width: 300px;
	height: 300px;
}

.ucta-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Responsive Design - Mobile First */
@media (max-width: 992px) {
	.ucta-cards {
		gap: 30px;
	}
	
	.ucta-card {
		padding: 35px 30px;
		min-height: 300px;
	}
}

@media (max-width: 768px) {
	.ucta-section {
		margin: 50px 0;
		padding: 40px 0;
	}

	.ucta-container {
		padding: 0 20px;
	}

	.ucta-myths {
		margin-bottom: 40px;
	}

	.ucta-myth {
		font-size: 15px;
		padding: 12px 20px;
	}

	.ucta-cards {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 25px;
	}

	.ucta-card {
		padding: 35px 25px;
		min-height: auto;
	}

	.ucta-card-icon {
		width: 64px;
		height: 64px;
		margin-bottom: 20px;
	}

	.ucta-card-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.ucta-card-text {
		font-size: 15px;
		margin-bottom: 18px;
	}

	.ucta-card-phone {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.ucta-button {
		padding: 12px 30px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.ucta-section {
		margin: 40px 0;
		padding: 30px 0;
	}

	.ucta-container {
		padding: 0 15px;
	}

	.ucta-card {
		padding: 30px 20px;
	}

	.ucta-card-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 18px;
	}

	.ucta-card-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.ucta-card-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.ucta-button {
		padding: 11px 28px;
		font-size: 14px;
		width: 100%;
		max-width: 280px;
	}
}

/* Print styles */
@media print {
	.ucta-section {
		display: none;
	}
}
