/* LET'S TALK Footer Styles */
.lets-footer-section {
	background: #f8faff;
	padding: 20px 15px 20px;
}

.lets-footer {
	background: var(--white-2, #ffffff);
	width: 100%;
	margin: 0 auto;
	border-radius: 24px;
	padding: 48px 56px;
	box-shadow: 0 20px 60px rgba(25, 26, 28, 0.12);
	border: 1px solid rgba(75, 84, 99, 0.08);
}

.lets-top-info {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

.lets-info-item {
	color: var(--charcoal-blue, #4b5463);
	font-size: 14px;
	letter-spacing: 0.01em;
}

.lets-info-label {
	display: block;
	font-weight: 500;
	color: var(--charcoal-blue, #4b5463);
}

.lets-info-value {
	display: block;
	margin-top: 4px;
	color: var(--carbon-black, #191a1c);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.01em;
}

.lets-main-text {
	text-align: center;
	margin: 70px 0;
	overflow: hidden;
}

.lets-main-text h1 {
	font-size: clamp(15px, 6vw, 20px);
	font-weight: 900;
	color: var(--carbon-black, #191a1c);
	display: inline-block;
}

.lets-letter {
	display: inline-block;
	animation: lets-wave 2s ease-in-out infinite;
	animation-delay: calc(var(--i) * 0.08s);
	transform-origin: center bottom;
	margin-right: 0.15em;
	padding: 20 0.05em;
}

.lets-letter:hover {
	animation: lets-bounce 0.6s ease;
}

@keyframes lets-wave {
	0%, 100% { transform: translateY(0) scale(1); }
	25% { transform: translateY(-18px) scale(1.08); }
	50% { transform: translateY(0) scale(1); }
}

@keyframes lets-bounce {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-28px) scale(1.14); }
}

.lets-bottom-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 64px;
}

.lets-credits {
	color: var(--charcoal-blue, #4b5463);
	font-size: 14px;
}

.lets-credits span {
	font-weight: 700;
	color: var(--carbon-black, #191a1c);
}

.lets-social-links {
	display: flex;
	gap: 14px;
	align-items: center;
}

.lets-social-links a {
	width: 42px;
	height: 42px;
	background: var(--carbon-black, #191a1c);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--white-2, #ffffff);
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 24px rgba(25, 26, 28, 0.2);
}

.lets-social-links a:hover {
	background: var(--cornflower-blue, #588dfa);
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(88, 141, 250, 0.3);
}

.lets-footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.lets-footer-links a {
	color: var(--charcoal-blue, #4b5463);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
}

.lets-footer-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: var(--cornflower-blue, #588dfa);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.lets-footer-links a:hover {
	color: var(--carbon-black, #191a1c);
}

.lets-footer-links a:hover::after {
	transform: scaleX(1);
}

@media (max-width: 992px) {
	.lets-footer {
		padding: 40px 32px;
	}

	.lets-top-info {
		flex-direction: column;
		align-items: flex-start;
	}

	.lets-main-text {
		margin: 50px 0;
	}

	.lets-main-text h1 {
		letter-spacing: -2px;
		padding: 30px 0 0 0;
	}
}

@media (max-width: 640px) {
	.lets-footer-section {
		padding: 60px 12px 20px;
	}

	.lets-footer {
		padding: 32px 24px;
		border-radius: 18px;
	}

	.lets-top-info,
	.lets-bottom-info {
		gap: 16px;
	}

	.lets-bottom-info {
		flex-direction: column;
		align-items: flex-start;
	}

	.lets-social-links {
		width: 100%;
	}
}
