/* ============================================
   Footer Section - فوتر تمام صفحه و خفن
   ============================================ */

.footer-section {
	position: relative;
	width: 100%;
	max-width: 100vw; /* جلوگیری از اسکرول افقی */
	min-height: 100vh;
	padding: 8rem 0 4rem;
	background: #000000;
	overflow-x: hidden; /* حذف اسکرول افقی */
	overflow-y: visible; /* اجازه اسکرول عمودی */
	isolation: isolate;
	perspective: 1000px;
	transform-style: preserve-3d;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Background Elements - مشابه products-section */
.footer-section__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.footer-section__grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0;
	animation: gridFadeIn 1.5s ease-out forwards;
}

@keyframes gridFadeIn {
	to {
		opacity: 1;
	}
}

.footer-section__gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: floatOrb 20s ease-in-out infinite;
}

.footer-section__gradient-orb--1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent 70%);
	top: 10%;
	left: -5%; /* تغییر از -10% به -5% برای جلوگیری از اسکرول افقی */
	animation-delay: 0s;
}

.footer-section__gradient-orb--2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
	bottom: 10%;
	right: -5%; /* تغییر از -10% به -5% برای جلوگیری از اسکرول افقی */
	animation-delay: 5s;
}

.footer-section__gradient-orb--3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
	top: 50%;
	right: 20%;
	animation-delay: 10s;
}

@keyframes floatOrb {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(30px, -30px) scale(1.1);
	}
	50% {
		transform: translate(-20px, 20px) scale(0.9);
	}
	75% {
		transform: translate(20px, 10px) scale(1.05);
	}
}

/* Container */
.footer-section__container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Top Section */
.footer-section__top {
	text-align: center;
	margin-bottom: 6rem;
	opacity: 0;
	transform: translateY(30px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.footer-section__logo-wrapper {
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.footer-section__logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	text-align: center;
}

.footer-section__logo-link:hover {
	transform: scale(1.05) rotate(-2deg);
}

.footer-section__logo-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 215, 0, 0.9) 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	letter-spacing: -0.02em;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

.footer-section__logo-wrapper img {
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.1);
	transition: filter 0.3s ease;
	display: block;
	margin: 0 auto;
}

.footer-section__logo-wrapper:hover img {
	filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.footer-section__description {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
	max-width: 700px;
	margin: 0 auto;
	font-weight: 300;
}

/* Main Content - چیدمان خلاقانه */
.footer-section__main {
	margin-bottom: 5rem;
}

.footer-section__content-wrapper {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: start;
	width: 100%;
}

/* Left Side */
.footer-section__left {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	width: 100%;
}

.footer-section__links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	width: 100%;
}

.footer-section__links-group {
	opacity: 0;
	transform: translateY(30px);
}

/* Contact Card */
.footer-section__contact-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	padding: 2.5rem;
	opacity: 0;
	transform: translateY(30px);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	max-width: 500px;
	width: 100%;
	align-self: flex-start;
}

.footer-section__contact-card:hover {
	border-color: rgba(255, 215, 0, 0.3);
	box-shadow: 
		0 16px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

/* Right Side */
.footer-section__right {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
	min-width: 0;
}

.footer-section__newsletter-card {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 32px;
	padding: 3rem;
	opacity: 0;
	transform: translateY(30px);
	box-shadow: 
		0 12px 40px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.05),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
}

.footer-section__newsletter-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 0;
	pointer-events: none;
}

.footer-section__newsletter-card:hover::before {
	opacity: 1;
}

.footer-section__newsletter-card:hover {
	border-color: rgba(255, 215, 0, 0.4);
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.45),
		0 0 0 2px rgba(255, 215, 0, 0.2),
		0 0 60px rgba(255, 215, 0, 0.15),
		inset 0 2px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-8px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.footer-section__newsletter-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	background: rgba(255, 215, 0, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1.5px solid rgba(255, 215, 0, 0.2);
	border-radius: 50px;
	margin-bottom: 1.75rem;
	position: relative;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section__newsletter-card:hover .footer-section__newsletter-badge {
	background: rgba(255, 215, 0, 0.18);
	border-color: rgba(255, 215, 0, 0.3);
	transform: scale(1.05);
}

.footer-section__newsletter-badge-icon {
	width: 18px;
	height: 18px;
	color: rgba(255, 215, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
	0%, 100% {
		transform: rotate(0deg);
	}
	10%, 30% {
		transform: rotate(-10deg);
	}
	20%, 40% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(0deg);
	}
}

.footer-section__newsletter-badge-icon svg,
.footer-section__newsletter-badge-icon [data-lucide] {
	width: 100%;
	height: 100%;
}

.footer-section__newsletter-badge-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 215, 0, 0.95);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-section__newsletter-title {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem 0;
	position: relative;
	z-index: 1;
	line-height: 1.3;
}

.footer-section__newsletter-title::after {
	content: '';
	position: absolute;
	bottom: -0.75rem;
	right: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, rgba(255, 215, 0, 0.9), transparent);
	border-radius: 2px;
}

.footer-section__social-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	padding: 2.5rem;
	opacity: 0;
	transform: translateY(30px);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section__social-card:hover {
	border-color: rgba(255, 215, 0, 0.3);
	box-shadow: 
		0 16px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

/* Column Title */
.footer-section__column-title {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 2rem 0;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	position: relative;
	padding-bottom: 1rem;
}

.footer-section__column-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, rgba(255, 215, 0, 0.9), transparent);
	border-radius: 2px;
}

.footer-section__title-icon {
	width: 28px;
	height: 28px;
	color: rgba(255, 215, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 215, 0, 0.1);
	border-radius: 10px;
	padding: 0.5rem;
	flex-shrink: 0;
}

.footer-section__title-icon svg,
.footer-section__title-icon [data-lucide] {
	width: 18px;
	height: 18px;
}

/* Links */
.footer-section__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-section__link {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	align-items: center;
	gap: 0.875rem;
	position: relative;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section__link svg,
.footer-section__link [data-lucide] {
	width: 18px;
	height: 18px;
	color: rgba(255, 215, 0, 0.7);
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.footer-section__link:hover {
	color: rgba(255, 215, 0, 0.95);
	background: rgba(255, 215, 0, 0.08);
	border-color: rgba(255, 215, 0, 0.2);
	transform: translateX(-8px);
	box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
}

.footer-section__link:hover svg,
.footer-section__link:hover [data-lucide] {
	color: rgba(255, 215, 0, 1);
	transform: scale(1.15);
}

/* Contact Info */
.footer-section__contact {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-section__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	color: rgba(255, 255, 255, 0.75);
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	padding: 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section__contact-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 215, 0, 0.2);
	transform: translateX(-5px);
	box-shadow: 0 4px 16px rgba(255, 215, 0, 0.1);
}

.footer-section__contact-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 215, 0, 0.1);
	border-radius: 12px;
	flex-shrink: 0;
	transition: all 0.4s ease;
}

.footer-section__contact-item:hover .footer-section__contact-icon-wrapper {
	background: rgba(255, 215, 0, 0.2);
	transform: scale(1.1) rotate(5deg);
}

.footer-section__contact-icon {
	width: 20px;
	height: 20px;
	color: rgba(255, 215, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-section__contact-icon svg,
.footer-section__contact-icon [data-lucide] {
	width: 100%;
	height: 100%;
}

.footer-section__contact-text {
	flex: 1;
}

.footer-section__contact-link {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.3s ease;
	flex: 1;
}

.footer-section__contact-link:hover {
	color: rgba(255, 215, 0, 0.95);
}

/* Newsletter */
.footer-section__newsletter-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.0625rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 2.5rem 0;
	position: relative;
	z-index: 1;
	font-weight: 300;
}

.footer-section__newsletter-form {
	width: 100%;
	position: relative;
	z-index: 1;
}

.footer-section__newsletter-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	gap: 0.5rem;
	overflow: visible;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		0 2px 8px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	min-height: 56px;
}

.footer-section__newsletter-input-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
	pointer-events: none;
	border-radius: 16px;
}

.footer-section__newsletter-input-wrapper:focus-within::before {
	opacity: 1;
}

.footer-section__newsletter-input-wrapper:focus-within {
	border-color: rgba(255, 215, 0, 0.4);
	box-shadow: 
		0 12px 40px rgba(255, 215, 0, 0.2),
		0 4px 16px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
	transform: translateY(-1px);
}

.footer-section__newsletter-input-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.08) 100%);
	border: 1px solid rgba(255, 215, 0, 0.2);
	border-radius: 12px;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 
		0 2px 8px rgba(255, 215, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-section__newsletter-input-wrapper:focus-within .footer-section__newsletter-input-icon-wrapper {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.12) 100%);
	border-color: rgba(255, 215, 0, 0.35);
	box-shadow: 
		0 4px 12px rgba(255, 215, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: scale(1.05);
}

.footer-section__newsletter-input-icon {
	width: 20px;
	height: 20px;
	color: rgba(255, 215, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
}

.footer-section__newsletter-input-wrapper:focus-within .footer-section__newsletter-input-icon {
	color: #ffd700;
	transform: scale(1.08);
	filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.footer-section__newsletter-input-icon svg,
.footer-section__newsletter-input-icon [data-lucide] {
	width: 100%;
	height: 100%;
}

.footer-section__newsletter-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	padding: 0.75rem 1rem;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	font-weight: 400;
	min-width: 0;
	transition: all 0.3s ease;
}

.footer-section__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 400;
	transition: opacity 0.3s ease, color 0.3s ease;
	opacity: 0.8;
}

.footer-section__newsletter-input:focus {
	color: #ffffff;
}

.footer-section__newsletter-input:focus::placeholder {
	opacity: 0.4;
	color: rgba(255, 255, 255, 0.4);
}

.footer-section__newsletter-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffd700 0%, #ffb733 50%, #ffa500 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #000000;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	box-shadow: 
		0 4px 16px rgba(255, 215, 0, 0.35),
		0 2px 8px rgba(255, 215, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.footer-section__newsletter-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transition: left 0.7s ease;
	z-index: 0;
}

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

.footer-section__newsletter-button:hover {
	background: linear-gradient(135deg, #ffe44d 0%, #ffd700 50%, #ffb733 100%);
	box-shadow: 
		0 6px 24px rgba(255, 215, 0, 0.45),
		0 3px 12px rgba(255, 215, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
	transform: translateY(-1px) scale(1.05);
	border-color: rgba(255, 255, 255, 0.3);
}

.footer-section__newsletter-button:active {
	transform: translateY(0) scale(1.02);
	box-shadow: 
		0 2px 8px rgba(255, 215, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-section__newsletter-button-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
	color: #000000;
}

.footer-section__newsletter-button:hover .footer-section__newsletter-button-icon {
	transform: translateX(1px) rotate(-8deg) scale(1.1);
}

.footer-section__newsletter-button-icon svg {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px;
	min-height: 20px;
	display: block;
	stroke: #000000;
	stroke-width: 2;
}

.footer-section__newsletter-button-icon [data-lucide] {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px;
	min-height: 20px;
	display: block;
}


/* Newsletter Benefits */
.footer-section__newsletter-benefits {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.footer-section__newsletter-benefit {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section__newsletter-benefit:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 215, 0, 0.2);
	transform: translateX(-5px);
	color: rgba(255, 255, 255, 0.9);
}

.footer-section__newsletter-benefit-icon {
	width: 20px;
	height: 20px;
	color: rgba(255, 215, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.4s ease;
}

.footer-section__newsletter-benefit:hover .footer-section__newsletter-benefit-icon {
	color: rgba(255, 215, 0, 1);
	transform: scale(1.15);
}

.footer-section__newsletter-benefit-icon svg,
.footer-section__newsletter-benefit-icon [data-lucide] {
	width: 100%;
	height: 100%;
}

/* Social Links */
.footer-section__social-links {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	flex-wrap: wrap;
}

.footer-section__social-link {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-section__social-link svg,
.footer-section__social-link [data-lucide] {
	width: 24px;
	height: 24px;
	transition: color 0.3s ease;
}

/* Hover Effects - خیلی ساده */
.footer-section__social-link:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Instagram */
.footer-section__social-link--instagram:hover {
	border-color: rgba(225, 48, 108, 0.5);
	background: rgba(225, 48, 108, 0.15);
}

.footer-section__social-link--instagram:hover svg,
.footer-section__social-link--instagram:hover [data-lucide] {
	color: #E1306C;
}

/* Telegram */
.footer-section__social-link--telegram:hover {
	border-color: rgba(37, 150, 190, 0.5);
	background: rgba(37, 150, 190, 0.15);
}

.footer-section__social-link--telegram:hover svg,
.footer-section__social-link--telegram:hover [data-lucide] {
	color: #2596BE;
}

/* WhatsApp */
.footer-section__social-link--whatsapp:hover {
	border-color: rgba(37, 211, 102, 0.5);
	background: rgba(37, 211, 102, 0.15);
}

.footer-section__social-link--whatsapp:hover svg,
.footer-section__social-link--whatsapp:hover [data-lucide] {
	color: #25D366;
}

/* Bottom Section */
.footer-section__bottom {
	text-align: center;
	padding-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0;
	transform: translateY(30px);
}

/* Trust Badges */
.footer-section__trust-badges {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.footer-section__trust-item {
	opacity: 0.8;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	padding: 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section__trust-item:hover {
	opacity: 1;
	transform: translateY(-5px) scale(1.05);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 215, 0, 0.3);
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.footer-section__trust-link {
	display: inline-block;
	text-decoration: none;
}

.footer-section__trust-image {
	max-height: 90px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(0.9);
	transition: filter 0.3s ease;
}

.footer-section__trust-item:hover .footer-section__trust-image {
	filter: brightness(1.1);
}

/* Copyright */
.footer-section__copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.footer-section__copyright-text {
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.footer-section__made-in {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-section__made-in svg,
.footer-section__made-in [data-lucide] {
	width: 18px;
	height: 18px;
	color: rgba(255, 215, 0, 0.8);
	animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
}

/* Responsive Design */
@media (max-width: 1400px) {
	.footer-section__content-wrapper {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 3.5rem;
	}
}

@media (max-width: 1200px) {
	.footer-section__content-wrapper {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
	
	.footer-section__links-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 968px) {
	.footer-section {
		padding: 6rem 0 3rem;
		min-height: auto;
	}
	
	.footer-section__container {
		padding: 0 1.5rem;
	}
	
	.footer-section__top {
		margin-bottom: 4rem;
	}
	
	.footer-section__main {
		margin-bottom: 3rem;
	}
	
	.footer-section__content-wrapper {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.footer-section__left {
		gap: 2.5rem;
	}
	
	.footer-section__links-grid {
		gap: 2rem;
	}
	
	.footer-section__contact-card,
	.footer-section__newsletter-card,
	.footer-section__social-card {
		padding: 2rem;
	}
}

@media (max-width: 640px) {
	.footer-section {
		padding: 4rem 0 2rem;
	}
	
	.footer-section__container {
		padding: 0 1rem;
	}
	
	.footer-section__top {
		margin-bottom: 3rem;
	}
	
	.footer-section__main {
		margin-bottom: 2rem;
	}
	
	.footer-section__content-wrapper {
		gap: 2rem;
	}
	
	.footer-section__left {
		gap: 2rem;
	}
	
	.footer-section__links-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.footer-section__contact-card,
	.footer-section__newsletter-card,
	.footer-section__social-card {
		padding: 1.5rem;
		border-radius: 20px;
	}
	
	.footer-section__column-title {
		font-size: 1.25rem;
	}
	
	.footer-section__social-links {
		gap: 1rem;
	}
	
	.footer-section__social-link {
		width: 48px;
		height: 48px;
	}
	
	.footer-section__bottom {
		padding-top: 3rem;
	}
	
	.footer-section__trust-badges {
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.footer-section__newsletter-input-wrapper {
		min-height: 52px;
		padding: 0.625rem;
		gap: 0.625rem;
		border-radius: 14px;
	}
	
	.footer-section__newsletter-input-icon-wrapper {
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}
	
	.footer-section__newsletter-input {
		font-size: 0.875rem;
		padding: 0.625rem 0.875rem;
	}
	
	.footer-section__newsletter-button {
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}
	
	.footer-section__newsletter-button-icon {
		width: 18px;
		height: 18px;
	}
	
	.footer-section__newsletter-button-icon svg,
	.footer-section__newsletter-button-icon [data-lucide] {
		width: 18px !important;
		height: 18px !important;
		min-width: 18px;
		min-height: 18px;
	}
}
