/* Premium CTA Section - Advanced Design */

.premium-cta-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #0a0a15 0%, #0f0f1e 50%, #0a0a15 100%);
	position: relative;
	overflow: hidden;
}

/* Animated Background Elements */
.cta-background-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: 
		radial-gradient(circle at 30% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
}

.cta-background-elements::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(184, 134, 11, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(184, 134, 11, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 40s linear infinite;
	opacity: 0.4;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}
.cta-background-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cta-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
}

.cta-shape.shape-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #B8860B 0%, transparent 70%);
	top: -100px;
	left: -100px;
	animation: ctaFloat 20s ease-in-out infinite;
}

.cta-shape.shape-2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #FFD700 0%, transparent 70%);
	bottom: -80px;
	right: 10%;
	animation: ctaFloat 25s ease-in-out infinite reverse;
}

.cta-shape.shape-3 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, #B8860B 0%, transparent 70%);
	top: 50%;
	right: -50px;
	animation: ctaFloat 18s ease-in-out infinite;
}

@keyframes ctaFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, -30px) scale(1.1);
	}
}

/* Content Wrapper */
.cta-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	position: relative;
	z-index: 2;
}

/* Icon Box */
.cta-icon-box {
	position: relative;
	flex-shrink: 0;
}

.cta-icon-inner {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 60px rgba(184, 134, 11, 0.4);
	position: relative;
	z-index: 3;
	animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 20px 60px rgba(184, 134, 11, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 25px 70px rgba(184, 134, 11, 0.5);
	}
}

.cta-icon-inner i {
	font-size: 50px;
	color: #fff;
	animation: ctaRing 2s ease-in-out infinite;
}

@keyframes ctaRing {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-15deg);
	}
	75% {
		transform: rotate(15deg);
	}
}

.cta-icon-ring {
	position: absolute;
	inset: -15px;
	border: 3px solid rgba(184, 134, 11, 0.3);
	border-radius: 50%;
	animation: ctaRingExpand 2s ease-out infinite;
}

.cta-icon-ring.ring-2 {
	animation-delay: 1s;
}

@keyframes ctaRingExpand {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Text Content */
.cta-text-content {
	flex: 1;
	max-width: 600px;
}

.cta-badge {
	display: inline-block;
	padding: 6px 18px;
	background: rgba(184, 134, 11, 0.2);
	border: 2px solid rgba(184, 134, 11, 0.4);
	border-radius: 30px;
	color: #FFD700;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.cta-title {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 12px;
}

.cta-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 25px;
}

/* Contact Info */
.cta-contact-info {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.cta-phone-link,
.cta-email-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	padding: 8px 0;
}

.cta-phone-link i,
.cta-email-link i {
	width: 35px;
	height: 35px;
	background: rgba(184, 134, 11, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #FFD700;
	transition: all 0.3s ease;
}

.cta-phone-link:hover,
.cta-email-link:hover {
	color: #FFD700;
	transform: translateX(5px);
}

.cta-phone-link:hover i,
.cta-email-link:hover i {
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	color: #fff;
	transform: scale(1.1);
}

/* Button Wrapper */
.cta-button-wrapper {
	flex-shrink: 0;
}

.cta-primary-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.cta-primary-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.cta-primary-button:hover::before {
	left: 100%;
}

.cta-primary-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(184, 134, 11, 0.5);
	color: #fff;
}

.cta-primary-button i {
	transition: transform 0.3s ease;
}

.cta-primary-button:hover i {
	transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.cta-content-wrapper {
		gap: 40px;
	}
	
	.cta-icon-inner {
		width: 100px;
		height: 100px;
	}
	
	.cta-icon-inner i {
		font-size: 40px;
	}
	
	.cta-title {
		font-size: 32px;
	}
}

@media (max-width: 992px) {
	.cta-content-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
	
	.cta-text-content {
		max-width: 100%;
	}
	
	.cta-contact-info {
		justify-content: center;
	}
	
	.cta-icon-box {
		order: -1;
	}
}

@media (max-width: 768px) {
	.premium-cta-section {
		padding: 60px 0;
	}
	
	.cta-title {
		font-size: 28px;
	}
	
	.cta-description {
		font-size: 15px;
	}
	
	.cta-contact-info {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}
	
	.cta-primary-button {
		padding: 16px 35px;
		font-size: 15px;
	}
	
	.cta-icon-inner {
		width: 90px;
		height: 90px;
	}
	
	.cta-icon-inner i {
		font-size: 36px;
	}
}
