/* =============================================================================
   Nejat Footer Widget
   ============================================================================= */

.nejat-footer {
	background-color: #fff;
}

/* Inner container — max-width + gutters */
.nejat-footer__inner {
	max-width: var(--nejat-max-width);
	margin: 0 auto;
	padding-left: var(--nejat-gutter);
	padding-right: var(--nejat-gutter);
}

/* -------------------------------------------------------------------------
   Main two-column layout (left: map/contact | right: nav/logos/social)
   ------------------------------------------------------------------------- */

.nejat-footer__main {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: var(--nejat-gap-lg);
	padding-top: 64px;
	padding-bottom: var(--nejat-gap-lg);
	align-items: start;
}

/* -------------------------------------------------------------------------
   Left column
   ------------------------------------------------------------------------- */

.nejat-footer__map {
	border-radius: var(--nejat-radius);
	overflow: hidden;
	margin-bottom: var(--nejat-gap-md);
}

.nejat-footer__map iframe {
	display: block;
	width: 100%;
	height: 300px;
	border: 0;
}

.nejat-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nejat-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.nejat-footer__contact-item a {
	color: #0077cc;
	text-decoration: none;
	transition: color 0.2s;
}

.nejat-footer__contact-item a:hover {
	text-decoration: underline;
}

.nejat-footer__contact-phone-text {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.nejat-footer__contact-sep {
	color: #aaa;
	font-size: 12px;
}

.nejat-footer__contact-text-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.nejat-footer__contact-text-icon {
	display: inline-flex;
	align-items: center;
	color: #555;
	flex-shrink: 0;
}

.nejat-footer__contact-text-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nejat-footer__contact-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	margin-top: 2px;
	color: #555;
}

.nejat-footer__contact-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* -------------------------------------------------------------------------
   Right column
   ------------------------------------------------------------------------- */

.nejat-footer__right {
	display: flex;
	flex-direction: column;
	gap: var(--nejat-gap-md);
}

/* Navigation columns */
.nejat-footer__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--nejat-gap-md);
}

.nejat-footer__nav-heading {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #111;
	line-height: 1.2;
}

.nejat-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nejat-footer__nav-item {
	margin: 0;
	padding: 0;
}

.nejat-footer__nav-link {
	font-size: 15px;
	color: #555;
	text-decoration: none;
	transition: color 0.2s;
}

.nejat-footer__nav-link:hover {
	color: #0077cc;
}

/* Partner logos */
.nejat-footer__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.nejat-footer__logo-item {
	display: flex;
	align-items: center;
}

.nejat-footer__logo-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nejat-footer__logo-img {
	height: 56px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* Social icons */
.nejat-footer__social {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nejat-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	text-decoration: none;
	transition: color 0.2s;
}

.nejat-footer__social-link:hover {
	color: #0077cc;
}

.nejat-footer__social-link svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
	display: block;
	transition: fill 0.2s;
}

/* -------------------------------------------------------------------------
   Bottom bar
   ------------------------------------------------------------------------- */

.nejat-footer__bottom {
	border-top: 1px solid #e0e0e0;
	padding-bottom: 24px;
}

.nejat-footer__bottom-bar {
	display: flex;
	justify-content: flex-end;
	padding: 12px 0 8px;
}

.nejat-footer__go-top {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #555;
	text-decoration: none;
	transition: color 0.2s;
}

.nejat-footer__go-top:hover {
	color: #0077cc;
}

.nejat-footer__copyright {
	text-align: center;
	font-size: 13px;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

.nejat-footer__copyright a {
	color: #111;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
}

.nejat-footer__copyright a:hover {
	text-decoration-style: solid;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.nejat-footer__main {
		grid-template-columns: 1fr 1.2fr;
		gap: var(--nejat-gap-md);
	}

	.nejat-footer__nav-heading {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.nejat-footer__main {
		grid-template-columns: 1fr;
		gap: var(--nejat-gap-md);
	}

	.nejat-footer__map {
		margin-bottom: var(--nejat-gap-sm);
	}

	.nejat-footer__logos {
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.nejat-footer__map iframe {
		height: 220px;
	}

	.nejat-footer__nav {
		gap: var(--nejat-gap-sm);
	}

	.nejat-footer__copyright {
		font-size: 12px;
		text-align: left;
	}
}
