/*
 * BB Travel Popup Styles
 */
.bb-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 33, 55, 0.85); /* Navy transparent */
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}
.bb-popup-container {
	background: #fff;
	border-radius: 12px;
	width: 90%;
	max-width: 800px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	overflow: hidden;
	animation: bbPopupIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes bbPopupIn {
	0% { opacity: 0; transform: scale(0.9); }
	100% { opacity: 1; transform: scale(1); }
}
.bb-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0,0,0,0.05);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}
.bb-popup-close:hover {
	background: rgba(0,0,0,0.1);
	color: #000;
}
.bb-popup-split {
	display: flex;
	flex-wrap: wrap;
}
.bb-popup-brand {
	flex: 1;
	min-width: 300px;
	background: #1B3C6E; /* Navy */
	color: #fff;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.bb-popup-logo {
	max-width: 150px;
	margin-bottom: 20px;
}
.bb-popup-brand h2 {
	margin: 0 0 15px 0;
	font-size: 28px;
	color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif;
}
.bb-popup-brand p {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 20px;
}
.bb-popup-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
}
.bb-popup-benefits li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.bb-popup-benefits li i {
	color: #F5C518; /* Gold */
}
.bb-popup-form-area {
	flex: 1;
	min-width: 300px;
	padding: 40px;
	background: #fff;
}
.bb-popup-form-area h3 {
	margin: 0 0 20px 0;
	font-size: 22px;
	color: #0D2137;
}
.bb-form-group {
	margin-bottom: 15px;
}
.bb-form-group input[type="text"],
.bb-form-group input[type="email"],
.bb-form-group input[type="tel"] {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s;
}
.bb-form-group input:focus {
	border-color: #1B3C6E;
	outline: none;
}
.bb-input-group {
	display: flex;
	align-items: center;
}
.bb-input-prefix {
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-right: none;
	padding: 11px 15px;
	border-radius: 6px 0 0 6px;
	color: #555;
	font-weight: 600;
}
.bb-input-group input {
	border-radius: 0 6px 6px 0 !important;
}
.bb-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #555;
}
.bb-btn {
	display: inline-block;
	padding: 14px 20px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}
.bb-btn-primary {
	background: #C41E3A; /* Red */
	color: #fff;
}
.bb-btn-primary:hover {
	background: #a0172d;
}
.bb-btn-block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.bb-form-message {
	margin-top: 15px;
	font-size: 14px;
	text-align: center;
}
.bb-form-message.success {
	color: #00a32a;
}
.bb-form-message.error {
	color: #d63638;
}

@media (max-width: 768px) {
	.bb-popup-container {
		width: 95%;
		max-height: 90vh;
		overflow-y: auto;
	}
	.bb-popup-brand {
		padding: 30px 20px;
	}
	.bb-popup-form-area {
		padding: 30px 20px;
	}
}
