/* ================================================
   Butar Consultancy - Contact Us Page
   ================================================ */
.bbc-wrapper {
	height: 100%;
	overflow-y: auto;
	width: 100%;
	background: #ffffff;
	color: #333333;
}

/* TOP SECTION */
.bbc-top-section {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 50px 5% 50px;
	max-width: 1424px;
	margin: 0 auto;
}

/* LEFT - FORM */
.bbc-left-section {
	flex: 1.2;
	min-width: 300px;
}

.bbc-form-box {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	padding: 36px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bbc-right-section {
	flex: 0.8;
	min-width: 280px;
}

.bbc-page-title {
	font-family: "Roboto", sans-serif;
	font-size: 36px;
	color: #09c7f7;
	margin-bottom: 8px;
	font-weight: 500;
	letter-spacing: 1px;
}

.bbc-page-subtitle {
	font-size: 14px;
	color: #888;
	margin-bottom: 32px;
	line-height: 1.6;
	letter-spacing: 1px;
}

.bbc-form-group {
	margin-bottom: 22px;
	position: relative;
}

.bbc-form-label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: #666;
	margin-bottom: 6px;
	letter-spacing: 1px;
}

.bbc-form-input,
.bbc-form-textarea,
.bbc-form-select {
	width: 100%;
	padding: 12px 14px;
	background: #f5f5f5;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	color: #333333;
	letter-spacing: 1px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	transition: border-color 0.25s;
	outline: none;
}

.bbc-form-input:focus,
.bbc-form-textarea:focus,
.bbc-form-select:focus {
	border-color: #09c7f7;
}

.bbc-form-textarea {
	resize: vertical;
	min-height: 100px;
}

.bbc-form-error {
	font-size: 11px;
	color: #ff5c5c;
	margin-top: 4px;
	display: none;
	letter-spacing: 0.3px;
}

.bbc-form-error.bbc-visible {
	display: block;
}

/* CAPTCHA */
.bbc-captcha-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bbc-captcha-box {
	background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
	padding: 10px 20px;
	border-radius: 8px;
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	letter-spacing: 8px;
	color: #2c3e50;
	user-select: none;
	text-decoration: line-through;
	position: relative;
	border: 1px solid #ccc;
}

.bbc-captcha-refresh {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f5f5f5;
	border: 1.5px solid #ddd;
	color: #2c3e50;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.bbc-captcha-refresh:hover {
	background: #e8e8e8;
}

.bbc-captcha-input {
	flex: 1;
}

/* SUBMIT */
.bbc-submit-btn {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #09c7f7, #23c3dd);
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 400;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	font-family: "Roboto", sans-serif;
}

.bbc-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(240, 192, 64, 0.3);
}

.bbc-submit-btn:active {
	transform: translateY(0);
}

/* SUCCESS MSG */
.bbc-success-msg {
	display: none;
	padding: 14px;
	background: #1a3a2a;
	border: 1px solid #2a6a3a;
	border-radius: 8px;
	color: #5fdd8a;
	font-size: 14px;
	text-align: center;
	margin-top: 16px;
}

.bbc-success-msg.bbc-visible {
	display: block;
}

/* RIGHT - CONTACT INFO */
.bbc-info-card {
	background: linear-gradient(160deg, #f9f9f9, #f0f0f0);
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	padding: 36px 28px;
	position: sticky;
	top: 30px;
}

.bbc-info-title {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	color: #09c7f7;
	margin-bottom: 24px;
	letter-spacing: 1px;
	font-weight: 500;
}

.bbc-info-item {
	display: flex;
	gap: 14px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.bbc-info-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #09c7f720;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bbc-info-icon svg {
	width: 20px;
	height: 20px;
	stroke: #09c7f7;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bbc-info-label {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	margin-bottom: 3px;
	letter-spacing: 1px;
}

.bbc-info-value {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	letter-spacing: 1px;
}

.bbc-social-row {
	display: flex;
	gap: 10px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #e0e0e0;
}

.bbc-social-link {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.bbc-social-link:hover {
	background: #e8e8e8;
	border-color: #09c7f7;
}

.bbc-social-link svg {
	width: 16px;
	height: 16px;
	fill: #888;
}

/* BOTTOM - MAP */
.bbc-bottom-section {
	width: 100%;
	padding: 0 5% 40px;
	max-width: 1424px;
	margin: 0 auto;
}

.bbc-map-title {
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	color: #09c7f7;
	margin-bottom: 16px;
	letter-spacing: 1px;
	font-weight: 500;
}

.bbc-map-container {
	width: 100%;
	height: 350px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #ddd;
	background: #f5f5f5;
}

.bbc-map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.6) brightness(0.7) contrast(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.bbc-top-section {
		flex-direction: column;
		padding: 30px 4%;
	}

	.bbc-page-title {
		font-size: 28px;
	}

	.bbc-info-card {
		position: static;
	}

	.bbc-bottom-section {
		padding: 0 4% 30px;
	}

	.bbc-map-container {
		height: 250px;
	}
}
