/* ============================================
   IBE Location Selector — landing page styles
   ============================================ */
* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: 'Montserrat', system-ui, sans-serif;
}

#ibe-landing {
	position: fixed;
	inset: 0;
	z-index: 1;
	background: #faf5ee;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
#ibe-landing.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.ibe-landing__pattern {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
	line-height: 0;
}
.ibe-landing__pattern img {
	display: block;
	max-height: 55vh;
	width: auto;
	opacity: 1;
}
.ibe-landing__body {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 540px;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ibe-landing__logo-wrap {
	margin-bottom: 3rem;
}
.ibe-landing__logo-wrap img {
	height: 60px;
	width: auto;
	object-fit: contain;
}
.ibe-landing__title {
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 0.22em;
	color: #434142;
	text-transform: uppercase;
	margin: 0 0 2.75rem;
	text-align: center;
}
.ibe-landing__fields {
	width: 100%;
}
.ibe-landing__field {
	margin-bottom: 2rem;
}
.ibe-landing__field-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	color: #9a9a9a;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.ibe-landing__select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #bbb;
	padding: 0.55rem 2rem 0.55rem 0;
	font-size: 0.95rem;
	font-weight: 300;
	color: #434142;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23434142' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.25rem center;
	transition: border-color 0.3s ease;
}
.ibe-landing__select:focus {
	outline: none;
	border-color: #434142;
}
.ibe-landing__btn {
	position: relative;
	display: inline-block;
	background: transparent;
	border: 0;
	padding: 0 0 6px 0;
	margin: 2.75rem 0 0;
	font-weight: 500;
	font-size: 0.82rem;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #434142;
	cursor: pointer;
	transition: color 0.45s ease;
}
.ibe-landing__btn span { display: inline-block; }
.ibe-landing__btn::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 56px;
	background: #FF4749;
	transition: width 0.45s ease;
}
.ibe-landing__btn:hover { color: #FF4749; }
.ibe-landing__btn:hover::before { width: 100%; }
.ibe-landing__remember {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 1.5rem;
	font-size: 0.75rem;
	font-weight: 300;
	color: #434142;
	cursor: pointer;
	user-select: none;
}
.ibe-landing__remember input[type="checkbox"] {
	width: 15px;
	height: 15px;
	appearance: none;
	-webkit-appearance: none;
	border: 1.5px solid #434142;
	background: transparent;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: background 0.2s ease;
}
.ibe-landing__remember input[type="checkbox"]:checked {
	background: #434142;
}
.ibe-landing__remember input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 1px;
	width: 7px;
	height: 4px;
	border-left: 1.5px solid #faf5ee;
	border-bottom: 1.5px solid #faf5ee;
	transform: rotate(-45deg);
}
@media (max-width: 600px) {
	.ibe-landing__body { padding: 0 1.5rem; }
	.ibe-landing__title { font-size: 0.8rem; }
	.ibe-landing__logo-wrap img { height: 48px; }
}

/* Arabic (RTL) */
html[lang="ar"] body,
html[lang="ar"] .ibe-landing__body {
	font-family: 'Changa', system-ui, sans-serif;
}
