/* ===== CTA Section ===== */

:root {
	--footer-navy: #14224a;
	--footer-accent: #fb8b24;
}

.cta-section {
	background:
		radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 30%),
		linear-gradient(135deg, #2754c5 0%, #14224a 100%);
	text-align: center;
	padding: 80px 0 0;
	position: relative;
	margin-top: 0;
}

.cta-section h2 {
	font-family: var(--font-display);
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	max-width: 520px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.btn-cta {
	display: inline-block;
	background: #ffffff;
	color: #173c9e;
	padding: 16px 48px;
	border-radius: 50px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: var(--transition);
	margin-bottom: 60px;
}

.btn-cta:hover {
	background: #f5f7fb;
	color: #173c9e;
	transform: translateY(-2px);
}

.wave-bottom {
	position: relative;
	line-height: 0;
	margin-bottom: -2px;
}

.wave-bottom svg {
	width: 100%;
	height: 120px;
	display: block;
}

.wave-bottom path {
	fill: var(--secondary-color, var(--footer-navy)) !important;
}

/* ===== Footer Specific Styles ===== */

.footer {
	background: var(--secondary-color, var(--footer-navy));
	color: #fff;
	padding: 60px 0 0;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1.2fr;
	gap: 3rem;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
	display: inline-block;
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 36px;
	width: auto;
}

.footer-section:first-child h3 {
	margin-top: 1.5rem;
}

.footer-section h3 {
	font-family: var(--font-display);
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section li {
	margin-bottom: 0.75rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
	font-size: 0.95rem;
}

.footer-section a:hover {
	color: var(--accent-amber, var(--footer-accent));
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

.contact-list strong {
	color: #fff;
}

.contact-list a {
	color: var(--accent-amber, var(--footer-accent));
	font-weight: 600;
}

.social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.social-links a {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.social-links svg {
	width: 20px;
	height: 20px;
}

/* Sayfalardaki genel sosyal medya stillerinin footer ikonlarını ezmesini önler. */
.footer .footer-social-links {
	display: flex;
	gap: 0.75rem;
}

.footer .footer-social-link {
	display: inline-flex;
	flex: 0 0 38px;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #fff !important;
}

.footer .footer-social-link svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.footer .footer-social-link--instagram:hover {
	background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.footer .footer-social-link--linkedin:hover {
	background: #0a66c2;
}

.footer .footer-social-link--facebook:hover {
	background: #1877f2;
}

.footer-bottom {
	text-align: center;
	padding: 25px 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 768px) {
	.cta-section {
		padding: 60px 0 0;
	}

	.footer {
		padding: 40px 0 0;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		padding: 40px 0;
	}

	.footer-section:first-child {
		grid-column: 1 / -1;
	}

	.footer-section a:hover {
		transform: none;
	}
}

@media (max-width: 480px) {
	.cta-section h2 {
		font-size: 1.4rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 30px 0;
	}

	.footer-bottom {
		padding: 20px 0;
	}
}
