/* ============================================================
   Banner Inquiry Widget
   ============================================================ */

/* ── Slider Wrapper ── */
.biq-slider-wrapper {
	width: 100%;
	position: relative;
}

.biq-swiper {
	width: 100%;
}

/* ── Each Slide ── */
.biq-slide {
	width: 100%;
	min-height: 520px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
}

.biq-slide.biq-has-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
	pointer-events: none;
}

/* ── Navigation Arrows ── */
.biq-swiper .biq-prev,
.biq-swiper .biq-next {
	color: #ffffff;
	width: 44px;
	height: 44px;
}

.biq-swiper .biq-prev::after,
.biq-swiper .biq-next::after {
	font-size: 20px;
	font-weight: 700;
}

/* ── Pagination ── */
.biq-swiper .biq-pagination {
	bottom: 20px;
}

.biq-swiper .biq-pagination .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: background 0.25s ease, transform 0.25s ease;
}

.biq-swiper .biq-pagination .swiper-pagination-bullet-active {
	background: #ffffff;
	transform: scale(1.3);
}

.biq-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.biq-text-box {
	max-width: 560px;
}

/* ── Title ── */
.biq-title {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

/* ── Description ── */
.biq-desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
	margin-bottom: 36px;
}

/* ── Button ── */
.biq-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #e67e22;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 4px;
	transition: background-color 0.25s ease, transform 0.2s ease;
	cursor: pointer;
}

.biq-btn:hover {
	background-color: #d35400;
	transform: translateY(-2px);
	color: #ffffff;
	text-decoration: none;
}

.biq-btn i {
	font-size: 13px;
	transition: transform 0.2s ease;
}

.biq-btn:hover i {
	transform: translateX(4px);
}

/* ── Modal Overlay ── */
.biq-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 99999;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.biq-overlay.biq-active {
	display: flex;
}

/* ── Modal Box ── */
.biq-modal-box {
	background: #ffffff;
	border-radius: 10px;
	width: 100%;
	max-width: 520px;
	padding: 40px 36px 36px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	animation: biqModalIn 0.25s ease;
}

@keyframes biqModalIn {
	from { opacity: 0; transform: translateY(-20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.biq-modal-close {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 22px;
	color: #999999;
	cursor: pointer;
	background: none;
	border: none;
	line-height: 1;
	transition: color 0.2s ease;
	padding: 0;
}

.biq-modal-close:hover {
	color: #333333;
	background: none;
}

.biq-modal-title {
	font-size: 24px;
	font-weight: 800;
	color: #1a2e5a;
	margin-bottom: 24px;
	text-align: center;
}

/* ── Form ── */
.biq-form-group {
	margin-bottom: 14px;
}

.biq-form-group input,
.biq-form-group textarea {
	width: 100%;
	border: 1px solid #dde2ec;
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 15px;
	color: #333333;
	outline: none;
	transition: border-color 0.2s ease;
	font-family: inherit;
	background: #ffffff;
	box-sizing: border-box;
}

.biq-form-group input::placeholder,
.biq-form-group textarea::placeholder {
	color: #aab0be;
}

.biq-form-group input:focus,
.biq-form-group textarea:focus {
	border-color: #1a2e5a;
}

.biq-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.biq-form-submit {
	width: 100%;
	padding: 16px;
	background-color: #1a2e5a;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 6px;
	transition: background-color 0.2s ease;
	font-family: inherit;
}

.biq-form-submit:hover {
	background-color: #142248;
}
