/**
 * Footer üst bilgi — açık gri zemin; kutular biraz daha büyük, boşluklar dolu görünüm.
 * Mobil (≤768px): örnek düzen — ortalanmış sosyal, tam genişlik bilgi satırları, WhatsApp iki renk, destek ortada.
 */

.banyoma-footer-info {
	width: 100%;
	margin: 0;
	padding: 26px 0 28px;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	box-sizing: border-box;
}

.banyoma-footer-info__inner {
	max-width: var(--banyoma-max-banner);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.banyoma-footer-info__bar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px 24px;
	width: 100%;
}

/* Sosyal: dört kare kutu */
.banyoma-footer-info__social {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.banyoma-footer-info__social-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #e5e7eb;
	border-radius: 5px;
	background: #fff;
	color: #6b7280;
	box-sizing: border-box;
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease;
}

a.banyoma-footer-info__social-item:hover,
a.banyoma-footer-info__social-item:focus-visible {
	border-color: #d1d5db;
	color: #374151;
}

.banyoma-footer-info__social-item[aria-disabled="true"] {
	opacity: 0.45;
	cursor: default;
}

.banyoma-footer-info__social-svg {
	display: block;
	width: 22px;
	height: 22px;
}

/* Orta: üç bilgi kutusu — alanı doldurur */
.banyoma-footer-info__services {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px 16px;
	flex: 1 1 280px;
	justify-content: center;
	min-width: 0;
}

.banyoma-footer-info__svc {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 12px 14px;
	min-height: 50px;
	padding: 12px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	color: #374151;
	text-decoration: none;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	flex: 1 1 auto;
	min-width: min(100%, 200px);
	justify-content: flex-start;
}

a.banyoma-footer-info__svc:hover,
a.banyoma-footer-info__svc:focus-visible {
	border-color: #d1d5db;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.banyoma-footer-info__svc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.banyoma-footer-info__svc-icon svg {
	width: 24px;
	height: 24px;
}

.banyoma-footer-info__svc-text {
	color: #374151;
}

/* WhatsApp */
.banyoma-footer-info__wa {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	min-height: 50px;
	padding: 8px 8px 8px 18px;
	border-radius: 6px;
	background: #dcfce7;
	border: 1px solid #bbf7d0;
	text-decoration: none;
	color: #14532d;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	box-sizing: border-box;
	transition: background 0.15s ease, border-color 0.15s ease;
	flex-shrink: 0;
}

.banyoma-footer-info__wa:hover,
a.banyoma-footer-info__wa:focus-visible {
	background: #bbf7d0;
	border-color: #86efac;
}

.banyoma-footer-info__wa-label {
	padding: 4px 0;
}

.banyoma-footer-info__wa-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	background: #15803d;
	flex-shrink: 0;
}

.banyoma-footer-info__wa-badge svg {
	display: block;
	width: 24px;
	height: 24px;
}

/* Sağ: destek hattı */
.banyoma-footer-info__phone {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	text-align: right;
	flex-shrink: 0;
	min-width: 168px;
}

.banyoma-footer-info__phone-label {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	color: #9ca3af;
	margin-bottom: 6px;
}

.banyoma-footer-info__phone-num {
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #374151;
	text-decoration: none;
}

a.banyoma-footer-info__phone-num:hover,
a.banyoma-footer-info__phone-num:focus-visible {
	color: var(--banyoma-orange, #f15a24);
}

@media (min-width: 1200px) {
	.banyoma-footer-info__bar {
		gap: 20px 28px;
	}

	.banyoma-footer-info__services {
		gap: 14px 20px;
		flex: 1 1 360px;
	}
}

@media (max-width: 1100px) {
	.banyoma-footer-info__bar {
		justify-content: flex-start;
	}

	.banyoma-footer-info__phone {
		width: 100%;
		align-items: flex-start;
		text-align: left;
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.banyoma-footer-info {
		padding: 18px 0 22px;
		background: #fff;
		border-top-color: #eee;
	}

	.banyoma-footer-info__inner {
		padding-left: 14px;
		padding-right: 14px;
	}

	.banyoma-footer-info__bar {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
	}

	.banyoma-footer-info__social {
		justify-content: center;
		width: 100%;
		gap: 8px;
	}

	.banyoma-footer-info__social-item {
		width: 40px;
		height: 40px;
		border-color: #e5e5e5;
		border-radius: 4px;
		color: #6b7280;
	}

	.banyoma-footer-info__social-svg {
		width: 20px;
		height: 20px;
	}

	.banyoma-footer-info__services {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		flex: none;
		gap: 8px;
		min-width: 0;
	}

	.banyoma-footer-info__svc {
		width: 100%;
		min-width: 0;
		min-height: 46px;
		padding: 10px 12px;
		border: 1px solid #e8e8e8;
		border-radius: 4px;
		background: #fff;
		font-size: 14px;
		font-weight: 500;
		justify-content: flex-start;
	}

	.banyoma-footer-info__svc-icon svg {
		width: 22px;
		height: 22px;
	}

	/* WhatsApp: sol açık yeşil metin alanı, sağ koyu yeşil logo */
	.banyoma-footer-info__wa {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		min-height: 48px;
		padding: 0;
		border: 1px solid #bbf7d0;
		border-radius: 6px;
		overflow: hidden;
		background: transparent;
	}

	.banyoma-footer-info__wa-label {
		flex: 1 1 78%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 12px 10px;
		margin: 0;
		background: #dcfce7;
		color: #14532d;
		font-size: 14px;
		font-weight: 600;
		text-align: center;
	}

	.banyoma-footer-info__wa-badge {
		flex: 0 0 22%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: auto;
		min-width: 56px;
		height: auto;
		min-height: 100%;
		border-radius: 0;
		background: #15803d;
	}

	.banyoma-footer-info__wa-badge svg {
		width: 22px;
		height: 22px;
	}

	/* Destek hattı: ortada, siyah tonları */
	.banyoma-footer-info__phone {
		width: 100%;
		align-items: center;
		text-align: center;
		min-width: 0;
		margin-top: 2px;
	}

	.banyoma-footer-info__phone-label {
		color: #111;
		font-size: 12px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		margin-bottom: 4px;
	}

	.banyoma-footer-info__phone-num {
		color: #111;
		font-size: 18px;
		font-weight: 700;
	}
}
