/* =====================================================
   BC Project Details Page Styling
   ===================================================== */

/* Project Details Section */
.bc-project-details-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

/* Project Main Image */
.bc-project-main-image {
	width: 100%;
	height: 450px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #e9ecef;
	margin-bottom: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bc-project-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Project Detail Title */
.bc-project-detail-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	line-height: 1.4;
}

/* Section Title */
.bc-section-title {
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 3px solid #e6bd52;
	display: inline-block;
}

/* Project Description */
.bc-project-description {
	background-color: #ffffff;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bc-project-description p {
	font-size: 15px;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 15px;
}

.bc-project-description p:last-child {
	margin-bottom: 0;
}

/* Project Overview */
.bc-project-overview {
	margin-bottom: 40px;
}

/* Overview Box */
.bc-overview-box {
	background-color: #ffffff;
	padding: 25px 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.bc-overview-box:hover {
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
	transform: translateY(-5px);
}

.bc-overview-box i {
	font-size: 40px;
	color: #e6bd52;
	margin-bottom: 12px;
	display: block;
}

.bc-overview-box h4 {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.bc-overview-box p {
	font-size: 14px;
	color: #666666;
	margin: 0;
}

/* Project Features */
.bc-project-features {
	margin-bottom: 40px;
}

.bc-feature-box {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 15px;
}

.bc-feature-box:hover {
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
	transform: translateX(5px);
}

.bc-feature-box i {
	font-size: 20px;
	color: #e6bd52;
	flex-shrink: 0;
}

.bc-feature-box h4 {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
}

/* Nearby Locations */
.bc-nearby-locations {
	margin-bottom: 40px;
}

.bc-location-box {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.bc-location-box:hover {
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
	transform: translateX(5px);
}

.bc-location-box i {
	font-size: 18px;
	color: #e6bd52;
	flex-shrink: 0;
	margin-top: 0;
}

.bc-location-box h4 {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.bc-location-box p {
	font-size: 13px;
	color: #888888;
	margin: 0;
}

/* Google Map */
.bc-project-map {
	margin-bottom: 35px;
}

#bc-google-map {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Project Gallery */
.bc-project-gallery {
	margin-bottom: 40px;
}

/* Gallery Carousel */
.bc-gallery-carousel {
	margin: 0 -10px;
	position: relative;
}

.bc-gallery-carousel .owl-item {
	padding: 0 10px;
}

.bc-gallery-carousel .owl-stage {
	margin: 0;
}

.bc-gallery-item {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #e9ecef;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bc-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.bc-gallery-item:hover img {
	transform: scale(1.1);
}

/* Gallery Overlay */
.bc-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* OWL Carousel Navigation */
.bc-gallery-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	z-index: 10;
}

.bc-gallery-carousel .owl-nav button {
	background: rgba(255, 107, 53, 0.8) !important;
	color: #ffffff !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.bc-gallery-carousel .owl-nav button:hover {
	background: rgba(255, 107, 53, 1) !important;
	transform: scale(1.1);
}

.bc-gallery-carousel .owl-dots {
	text-align: center;
	margin-top: 15px;
}

.bc-gallery-carousel .owl-dots .owl-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bc-gallery-carousel .owl-dots .owl-dot.active {
	background: #e6bd52;
	transform: scale(1.2);
}

.bc-gallery-item:hover .bc-gallery-overlay {
	opacity: 1;
}

.bc-zoom-icon {
	width: 50px;
	height: 50px;
	background-color: #e6bd52;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.bc-zoom-icon:hover {
	background-color: #e6bd52;
	transform: scale(1.1);
}

/* =====================================================
   Sidebar / Contact Seller
   ===================================================== */

.bc-project-sidebar {
	position: sticky;
	top: 100px;
}

/* Contact Seller Box */
.bc-contact-seller-box {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bc-contact-title {
	font-size: 25px;
	font-weight: 900;
	color: #1a1a1a;
	margin-bottom: 25px;
	border-bottom: 2px solid #e6bd52;
	padding-bottom: 15px;
	letter-spacing: 1px;
}

/* Seller Info */
.bc-seller-info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e9ecef;
}

.bc-seller-logo-circle {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	border: 2px solid #e6bd52;
}

.bc-seller-logo-circle img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}

.bc-seller-details {
	flex: 1;
}

.bc-seller-name {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
	line-height: 1.3;
	letter-spacing: 1px;
}

.bc-seller-phone,
.bc-seller-email {
	font-size: 13px;
	color: #666666;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.bc-seller-phone i,
.bc-seller-email i {
	color: #e6bd52;
	font-size: 14px;
}

/* Contact Form */
.bc-contact-form {
	width: 100%;
}

.bc-form-group {
	margin-bottom: 5px;
}

.bc-form-group label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 1px;
	margin-bottom: 7px;
}

.bc-form-input,
.bc-form-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	font-size: 15px;
	letter-spacing: 1px;
	font-family: inherit;
	transition: all 0.3s ease;
	background-color: #ffffff;
}

.bc-form-input:focus,
.bc-form-textarea:focus {
	border-color: #e6bd52;
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.bc-form-input::placeholder,
.bc-form-textarea::placeholder {
	color: #999999;
}

.bc-form-textarea {
	resize: vertical;
	min-height: 120px;
}

/* Error Message */
.bc-error-message {
	display: block;
	font-size: 12px;
	color: #dc3545;
	margin-top: 5px;
	min-height: 16px;
}

.bc-error-message.show {
	display: block;
}

/* Captcha Container */
.bc-captcha-container {
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
}

.bc-form-input {
	flex: 1;
}

.bc-captcha-code {
	background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
	color: #ffffff;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	font-family: 'Courier New', monospace;
	user-select: none;
	min-width: 100px;
	text-align: center;
}

.bc-captcha-refresh {
	width: 44px;
	height: 44px;
	padding: 0;
	background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
}

.bc-captcha-refresh:hover {
	background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
	transform: rotate(180deg);
	box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.bc-captcha-refresh:active {
	transform: rotate(180deg) scale(0.95);
}

/* Submit Button */
.bc-submit-btn {
	width: 100%;
	padding: 14px 20px;
	background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
	color: #ffffff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 5px;
	letter-spacing:1px;
}

.bc-submit-btn:hover {
	background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.bc-submit-btn:active {
	transform: translateY(0);
}

/* =====================================================
   Project Price List
   ===================================================== */

.bc-project-price-list {
	margin-bottom: 40px;
}

.bc-price-box {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 30px 25px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 4px solid #e6bd52;
}

.bc-price-box:hover {
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
	transform: translateY(-8px);
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.bc-price-configuration {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.bc-price-area {
	font-size: 14px;
	color: #666666;
	margin-bottom: 15px;
	font-weight: 500;
}

.bc-price-amount {
	font-size: 16px;
	font-weight: 700;
	color: #e6bd52;
	margin: 0;
	letter-spacing: 0.5px;
}

/* =====================================================
   Project Floor Plan
   ===================================================== */

.bc-project-floor-plan {
	margin-bottom: 20px;
}

/* Floor Plan Carousel */
.bc-floor-plan-carousel {
	margin: 0 -10px;
	position: relative;
}

.bc-floor-plan-carousel .owl-item {
	padding: 0 10px;
}

.bc-floor-plan-carousel .owl-stage {
	margin: 0;
}

.bc-floor-plan-item {
	text-align: center;
}

.bc-floor-plan-image-wrapper {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #e9ecef;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 12px;
}

.bc-floor-plan-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.bc-floor-plan-image-wrapper:hover img {
	transform: scale(1.1);
}

/* Floor Plan Overlay */
.bc-floor-plan-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bc-floor-plan-image-wrapper:hover .bc-floor-plan-overlay {
	opacity: 1;
}

.bc-floor-plan-zoom-icon {
	width: 50px;
	height: 50px;
	background-color: #e6bd52;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.bc-floor-plan-zoom-icon:hover {
	background-color: #e6bd52;
	transform: scale(1.1);
}

.bc-floor-plan-title {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	padding: 8px 0;
	letter-spacing: 0.5px;
}

/* =====================================================
   Responsive Design
   ===================================================== */

/* Tablet - 991px */
@media (max-width: 991px) {
	.bc-project-main-image {
		height: 350px;
		margin-bottom: 25px;
	}

	.bc-project-detail-title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.bc-section-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.bc-project-description {
		padding: 20px;
		margin-bottom: 25px;
	}

	.bc-description p {
		font-size: 14px;
	}

	.bc-contact-seller-box {
		padding: 25px;
		margin-top: 30px;
	}

	.bc-project-sidebar {
		position: relative;
		top: 0;
	}
}

/* Tablet Smaller - 768px */
@media (max-width: 768px) {
	.bc-project-details-section {
		padding: 40px 0;
	}

	.bc-project-main-image {
		height: 300px;
		margin-bottom: 20px;
	}

	.bc-project-detail-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.bc-section-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.bc-gallery-item {
		height: 200px;
	}

	.bc-gallery-carousel {
		margin: 0 -5px;
	}

	.bc-gallery-carousel .owl-item {
		padding: 0 5px;
	}

	.bc-floor-plan-image-wrapper {
		height: 200px;
	}

	.bc-floor-plan-carousel {
		margin: 0 -5px;
	}

	.bc-floor-plan-carousel .owl-item {
		padding: 0 5px;
	}

	.bc-contact-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

/* Mobile - 576px */
@media (max-width: 576px) {
	.bc-project-details-section {
		padding: 30px 0;
	}

	.bc-project-main-image {
		height: 250px;
		margin-bottom: 18px;
	}

	.bc-project-detail-title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.bc-section-title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.bc-overview-box,
	.bc-feature-box,
	.bc-location-box {
		padding: 15px;
	}

	.bc-overview-box i {
		font-size: 32px;
	}

	.bc-gallery-item {
		height: 180px;
	}

	.bc-floor-plan-image-wrapper {
		height: 180px;
	}

	.bc-gallery-carousel .owl-nav {
		display: none;
	}

	.bc-contact-seller-box {
		padding: 20px;
	}

	.bc-contact-title {
		font-size: 18px;
		margin-bottom: 18px;
	}

	.bc-seller-info {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.bc-seller-logo-circle {
		width: 60px;
		height: 60px;
	}

	.bc-seller-name {
		font-size: 14px;
	}

	.bc-form-input,
	.bc-form-textarea {
		padding: 10px 12px;
		font-size: 13px;
	}

	.bc-submit-btn {
		padding: 12px 16px;
		font-size: 14px;
	}
}

/* Extra Small - 380px */
@media (max-width: 380px) {
	.bc-project-main-image {
		height: 200px;
		margin-bottom: 15px;
	}

	.bc-project-detail-title {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.bc-section-title {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.bc-overview-box,
	.bc-feature-box,
	.bc-location-box {
		padding: 12px;
	}

	.bc-overview-box h4,
	.bc-feature-box h4,
	.bc-location-box h4 {
		font-size: 13px;
	}

	.bc-gallery-item {
		height: 150px;
	}

	.bc-floor-plan-image-wrapper {
		height: 150px;
	}

	.bc-contact-seller-box {
		padding: 15px;
	}

	.bc-contact-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.bc-captcha-code {
		min-width: 80px;
		font-size: 14px;
		padding: 8px 10px;
	}

	.bc-captcha-refresh {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.bc-gallery-carousel .owl-nav button {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
}