/**
 * ============================================
 *   PREMIUM FOOTER DESIGN
 *   Modern, Profesyonel ve Etkileyici Tasarım
 * ============================================
 *
 * @format
 */

/* ===== FOOTER CONTAINER ===== */
.footer-premium {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1729 100%);
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

/* Animated Background Pattern */
.footer-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(37, 99, 235, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(124, 58, 237, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

/* ===== WAVE TRANSITION ===== */
.footer-wave-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: translateY(-99%);
	z-index: 2;
}

.footer-wave {
	display: block;
	width: 100%;
	height: 120px;
	position: relative;
}

/* Wave Layer Animations */
.wave-layer-1 {
	animation: waveFloat1 12s ease-in-out infinite;
	transform-origin: center;
}

.wave-layer-2 {
	animation: waveFloat2 15s ease-in-out infinite;
	transform-origin: center;
}

.wave-layer-3 {
	animation: waveFloat3 18s ease-in-out infinite;
	transform-origin: center;
}

@keyframes waveFloat1 {
	0%,
	100% {
		transform: translateX(0) scaleY(1);
	}
	50% {
		transform: translateX(-25px) scaleY(0.95);
	}
}

@keyframes waveFloat2 {
	0%,
	100% {
		transform: translateX(0) scaleY(1);
	}
	50% {
		transform: translateX(25px) scaleY(1.05);
	}
}

@keyframes waveFloat3 {
	0%,
	100% {
		transform: translateX(0) scaleY(1);
	}
	50% {
		transform: translateX(-15px) scaleY(0.98);
	}
}

/* ===== MAIN FOOTER CONTENT ===== */
.footer-main-content {
	padding: 80px 0 50px;
	position: relative;
	z-index: 1;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: 50px;
	align-items: start;
}

/* ===== BRAND COLUMN ===== */
.footer-brand-col {
	padding-right: 30px;
}

.brand-wrapper {
	animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
	margin-bottom: 25px;
}

.footer-logo img {
	height: 90px;
	width: auto;
	filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.3));
	transition: transform 0.3s ease;
}

.footer-logo img:hover {
	transform: scale(1.05);
}

.brand-description {
	color: #cbd5e0;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 30px;
}

.highlight-text {
	background: linear-gradient(135deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

/* ===== FOOTER TITLES ===== */
.footer-title {
	color: white;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #2563eb, #7c3aed);
	border-radius: 2px;
}

.title-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ===== FOOTER LINKS ===== */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 14px;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
}

.footer-links a i {
	font-size: 10px;
	color: #2563eb;
	transition: transform 0.3s ease;
	opacity: 0.7;
}

.footer-links a span {
	transition: transform 0.3s ease;
}

.footer-links a:hover {
	color: #60a5fa;
	padding-left: 8px;
}

.footer-links a:hover i {
	transform: translateX(5px);
	opacity: 1;
}

.footer-links a:hover span {
	transform: translateX(3px);
}

/* ===== CONTACT INFO ===== */
.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 35px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.contact-info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(37, 99, 235, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.contact-info-item:hover::before {
	left: 100%;
}

.contact-info-item:hover {
	background: rgba(37, 99, 235, 0.08);
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateX(8px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
	transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
	transform: scale(1.1) rotate(5deg);
}

.contact-info-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-info-label {
	font-size: 11px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-weight: 700;
}

.contact-info-value {
	font-size: 15px;
	color: #e2e8f0;
	font-weight: 600;
}

/* ===== INSTAGRAM SECTION ===== */
.social-media-section {
	margin-top: 30px;
}

.social-media-title {
	color: #e2e8f0;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.instagram-link {
	display: block;
	text-decoration: none;
}

.instagram-button {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px;
	background: linear-gradient(
		135deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.instagram-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.6s ease;
}

.instagram-button:hover::before {
	left: 100%;
}

.instagram-button:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 15px 40px rgba(188, 24, 136, 0.5);
}

.instagram-icon {
	width: 55px;
	height: 55px;
	min-width: 55px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: white;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.instagram-button:hover .instagram-icon {
	transform: scale(1.15) rotate(10deg);
}

.instagram-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.instagram-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.instagram-handle {
	font-size: 18px;
	color: white;
	font-weight: 800;
	letter-spacing: 0.5px;
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom-bar {
	background: rgba(0, 0, 0, 0.4);
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
}

.copyright-section {
	display: flex;
	align-items: center;
}

.copyright-text {
	color: #94a3b8;
	font-size: 14px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.copyright-text i {
	font-size: 16px;
	color: #2563eb;
}

.copyright-text strong {
	color: #e2e8f0;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.separator {
	color: #475569;
	margin: 0 5px;
}

.footer-bottom-badges {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.bottom-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 25px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.bottom-badge:hover {
	background: rgba(37, 99, 235, 0.15);
	border-color: rgba(37, 99, 235, 0.4);
	color: #60a5fa;
	transform: translateY(-2px);
}

.bottom-badge i {
	color: #2563eb;
	font-size: 14px;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.scroll-to-top:active {
	transform: translateY(-3px) scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 40px;
	}

	.footer-brand-col {
		grid-column: 1 / -1;
		padding-right: 0;
	}
}

@media (max-width: 968px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-contact-col {
		grid-column: 1 / -1;
	}

	.footer-main-content {
		padding: 60px 0 40px;
	}
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}

	.footer-main-content {
		padding: 40px 0 25px;
	}

	.footer-wave {
		height: 80px;
	}

	.footer-title {
		justify-content: center;
		font-size: 19px;
		margin-bottom: 15px;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
		bottom: -8px;
	}

	.footer-links {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-links li {
		width: 100%;
		max-width: 250px;
		margin-bottom: 8px;
	}

	.footer-links a {
		justify-content: center;
		padding: 10px 15px;
		font-size: 14px;
	}

	.brand-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-logo {
		margin-bottom: 15px;
	}

	.brand-description {
		text-align: center;
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.social-media-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 15px;
	}

	.social-media-title {
		text-align: center;
		margin-bottom: 12px;
	}

	.contact-info-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 0;
	}

	.contact-info-item {
		width: 100%;
		max-width: 300px;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.footer-bottom-badges {
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px;
	}

	.copyright-text {
		justify-content: center;
		flex-wrap: wrap;
	}

	.scroll-to-top {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
	}
}

@media (max-width: 640px) {
	.footer-main-content {
		padding: 30px 0 20px;
	}

	.footer-grid {
		gap: 20px;
	}

	.footer-logo {
		margin-bottom: 12px;
	}

	.footer-logo img {
		height: 65px;
		margin: 0 auto;
	}

	.footer-title {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.footer-title::after {
		bottom: -6px;
		width: 40px;
	}

	.footer-wave {
		height: 60px;
	}

	.brand-wrapper {
		margin-bottom: 15px;
	}

	.brand-description {
		font-size: 13px;
		line-height: 1.6;
		padding: 0 10px;
		margin-bottom: 15px;
	}

	.social-media-section {
		margin-top: 10px;
	}

	.social-media-title {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.footer-links li {
		margin-bottom: 6px;
	}

	.footer-links a {
		padding: 8px 12px;
		font-size: 13px;
	}

	.contact-info-list {
		gap: 10px;
	}

	.footer-bottom-content {
		gap: 12px;
	}

	.footer-bottom-badges {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		width: 100%;
	}

	.bottom-badge {
		justify-content: center;
		font-size: 12px;
		padding: 7px 12px;
		flex: 0 1 auto;
	}

	.copyright-text {
		font-size: 12px;
		line-height: 1.5;
	}

	.separator {
		display: none;
	}

	.instagram-button {
		padding: 12px;
		max-width: 280px;
		margin: 0 auto;
	}

	.instagram-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
		font-size: 22px;
	}

	.instagram-handle {
		font-size: 15px;
	}

	.contact-info-item {
		padding: 12px;
		max-width: 280px;
	}

	.contact-info-icon {
		width: 42px;
		height: 42px;
		min-width: 42px;
		font-size: 17px;
	}

	.contact-info-label {
		font-size: 11px;
	}

	.contact-info-value {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.footer-premium {
		margin-top: 0;
	}

	.footer-main-content {
		padding: 25px 0 15px;
	}

	.footer-wave {
		height: 50px;
	}

	.footer-grid {
		gap: 18px;
	}

	.footer-logo {
		margin-bottom: 10px;
	}

	.footer-logo img {
		height: 55px;
	}

	.footer-title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.footer-title::after {
		bottom: -5px;
		width: 35px;
		height: 2px;
	}

	.title-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.brand-wrapper {
		margin-bottom: 12px;
	}

	.brand-description {
		font-size: 12px;
		line-height: 1.5;
		padding: 0 10px;
		margin-bottom: 12px;
	}

	.social-media-section {
		margin-top: 8px;
	}

	.social-media-title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.footer-links li {
		margin-bottom: 5px;
		max-width: 220px;
	}

	.footer-links a {
		font-size: 12px;
		padding: 7px 10px;
	}

	.contact-info-list {
		gap: 8px;
	}

	.instagram-button {
		padding: 10px;
		max-width: 250px;
	}

	.instagram-icon {
		width: 42px;
		height: 42px;
		min-width: 42px;
		font-size: 20px;
	}

	.instagram-handle {
		font-size: 14px;
	}

	.contact-info-item {
		padding: 10px;
		max-width: 250px;
	}

	.contact-info-icon {
		width: 38px;
		height: 38px;
		min-width: 38px;
		font-size: 15px;
	}

	.contact-info-label {
		font-size: 10px;
	}

	.contact-info-value {
		font-size: 13px;
	}

	.footer-bottom-content {
		gap: 10px;
	}

	.bottom-badge {
		font-size: 11px;
		padding: 6px 10px;
	}

	.bottom-badge i {
		font-size: 11px;
	}

	.copyright-text {
		font-size: 11px;
		line-height: 1.4;
	}

	.scroll-to-top {
		width: 42px;
		height: 42px;
		bottom: 12px;
		right: 12px;
		font-size: 15px;
	}

	.footer-bottom-bar {
		padding: 15px 0;
	}
}
