
.tdmf-footer,
.tdmf-footer * {
	box-sizing: border-box;
}

.tdmf-footer {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #171918;
	color: #f7f7f5;
	font-family: "Manrope", sans-serif;
	padding: 60px 72px 28px;
	border-radius: 16px;
}

.tdmf-footer::before {
	content: "";
	position: absolute;
	top: -110px;
	left: -90px;
	width: 360px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201,153,18,.12), rgba(201,153,18,0) 70%);
	pointer-events: none;
}

.tdmf-top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr);
	column-gap: 80px;
	align-items: start;
}

.tdmf-brand-title {
	max-width: 760px;
	color: #c99912;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -.025em;
}

.tdmf-description {
	max-width: 590px;
	margin-top: 22px;
	color: #a6a8a7;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

.tdmf-links-title {
	margin-bottom: 20px;
	color: #f7f7f5;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
}

.tdmf-links-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	column-gap: 42px;
	row-gap: 17px;
}

.tdmf-link {
	position: relative;
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	color: #f7f7f5;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: opacity .25s ease, transform .25s ease;
}

.tdmf-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: #c99912;
	transition: width .3s ease;
}

.tdmf-link:hover {
	opacity: .9;
	transform: translateX(3px);
}

.tdmf-link:hover::after {
	width: 100%;
}

.tdmf-divider {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 1px;
	margin: 54px 0 26px;
	background: rgba(255,255,255,.08);
}

.tdmf-bottom {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	color: #a6a8a7;
	font-size: 14px;
	line-height: 1.5;
}

.tdmf-designer {
	color: #f7f7f5;
	text-decoration: none;
	transition: color .25s ease;
}

.tdmf-designer:hover {
	color: #c99912;
}

@media (max-width: 1024px) {
	.tdmf-footer {
		padding: 48px 42px 26px;
	}

	.tdmf-top {
		grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
		column-gap: 50px;
	}

	.tdmf-brand-title {
		font-size: 29px;
	}
}

@media (max-width: 767px) {
	.tdmf-footer {
		padding: 38px 24px 24px;
		border-radius: 14px;
	}

	.tdmf-top {
		grid-template-columns: 1fr;
		row-gap: 42px;
	}

	.tdmf-brand-title {
		font-size: 26px;
	}

	.tdmf-description {
		margin-top: 16px;
	}

	.tdmf-links-list {
		grid-template-columns: repeat(2, minmax(0,1fr));
		column-gap: 24px;
	}

	.tdmf-divider {
		margin: 38px 0 22px;
	}

	.tdmf-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.tdmf-links-list {
		grid-template-columns: 1fr;
	}

	.tdmf-link {
		width: 100%;
		padding: 3px 0;
	}
}

.tdmf-brand-logo-wrap {
	display: flex;
	width: 100%;
	justify-content: flex-start;
}

.tdmf-brand-logo-link {
	display: inline-flex;
	max-width: 100%;
	line-height: 0;
	text-decoration: none;
}

.tdmf-brand-logo {
	display: block;
	width: 280px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
	transition: opacity .25s ease, transform .25s ease;
	transform-origin: center;
}

/* v1.2.0 mobile polish and reveal animations */
.tdmf-footer {
	--tdmf-motion: 24px;
	--tdmf-duration: 700ms;
	isolation: isolate;
}

.tdmf-brand,
.tdmf-links,
.tdmf-divider,
.tdmf-bottom {
	min-width: 0;
}

.tdmf-animate.tdmf-motion-ready:not(.tdmf-is-visible) .tdmf-brand,
.tdmf-animate.tdmf-motion-ready:not(.tdmf-is-visible) .tdmf-links,
.tdmf-animate.tdmf-motion-ready:not(.tdmf-is-visible) .tdmf-divider,
.tdmf-animate.tdmf-motion-ready:not(.tdmf-is-visible) .tdmf-bottom {
	opacity: 0;
	transform: translateY(var(--tdmf-motion));
	transition: opacity var(--tdmf-duration) cubic-bezier(.2,.7,.2,1), transform var(--tdmf-duration) cubic-bezier(.2,.7,.2,1);
}
.tdmf-animate.tdmf-is-visible .tdmf-brand,
.tdmf-animate.tdmf-is-visible .tdmf-links,
.tdmf-animate.tdmf-is-visible .tdmf-divider,
.tdmf-animate.tdmf-is-visible .tdmf-bottom {
	opacity: 1;
	transform: translateY(0);
}
.tdmf-animate.tdmf-is-visible .tdmf-links { transition-delay: 100ms; }
.tdmf-animate.tdmf-is-visible .tdmf-divider { transition-delay: 180ms; }
.tdmf-animate.tdmf-is-visible .tdmf-bottom { transition-delay: 240ms; }

@media (max-width: 767px) {
	.tdmf-footer {
		width: 100%;
		padding: 30px 20px 22px;
		border-radius: 18px;
	}

	.tdmf-footer.tdmf-mobile-full-bleed {
		width: calc(100% + 32px);
		max-width: none;
		margin-left: -16px;
		margin-right: -16px;
		border-radius: 0;
	}

	.tdmf-top {
		row-gap: 30px;
	}

	.tdmf-brand-logo-wrap {
		justify-content: center;
	}

	.tdmf-brand-logo {
		width: min(150px, 52vw);
	}

	.tdmf-description {
		max-width: 31rem;
		margin-left: auto;
		margin-right: auto;
		font-size: 15px;
		line-height: 1.65;
	}

	.tdmf-links-title {
		margin-bottom: 16px;
	}

	.tdmf-links-list {
		width: min(100%, 330px);
		margin-left: auto;
		margin-right: auto;
		column-gap: 18px;
		row-gap: 12px;
	}

	.tdmf-link {
		min-height: 42px;
		padding: 10px 12px;
		border: 1px solid rgba(255,255,255,.08);
		border-radius: 12px;
		background: rgba(255,255,255,.025);
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.tdmf-link::after { display: none; }
	.tdmf-link:hover { transform: translateY(-2px); }

	.tdmf-divider {
		margin: 30px 0 18px;
	}

	.tdmf-bottom {
		align-items: center;
		text-align: center;
		gap: 8px;
		font-size: 13px;
	}

	.tdmf-copyright,
	.tdmf-designer {
		max-width: 28rem;
	}
}

@media (max-width: 480px) {
	.tdmf-links-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tdmf-link {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tdmf-animate.tdmf-motion-ready .tdmf-brand,
	.tdmf-animate.tdmf-motion-ready .tdmf-links,
	.tdmf-animate.tdmf-motion-ready .tdmf-divider,
	.tdmf-animate.tdmf-motion-ready .tdmf-bottom {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* v1.2.1: İçerik hiçbir koşulda görünmez kalmasın. */
.elementor-editor-active .tdmf-animate .tdmf-brand,
.elementor-editor-active .tdmf-animate .tdmf-links,
.elementor-editor-active .tdmf-animate .tdmf-divider,
.elementor-editor-active .tdmf-animate .tdmf-bottom,
.elementor-editor-preview .tdmf-animate .tdmf-brand,
.elementor-editor-preview .tdmf-animate .tdmf-links,
.elementor-editor-preview .tdmf-animate .tdmf-divider,
.elementor-editor-preview .tdmf-animate .tdmf-bottom {
	opacity: 1 !important;
	transform: none !important;
}
