/* ==============================
   PROJECT FULL DETAILS
================================ */
.dr1051proj {
	background: linear-gradient(180deg, #020617, #0f172a);
	padding: 80px 20px;
	color: #ffffff;
	font-family: "Segoe UI", system-ui, sans-serif;
	overflow-x: hidden;
	box-sizing: border-box;
}

.dr1051proj * {
	box-sizing: border-box;
}

/* ==============================
   CONTAINER
================================ */
.dr1051proj .proj-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

/* ==============================
   PROJECT DETAILS
================================ */
.dr1051proj .proj-location {
	color: #facc15;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.dr1051proj .proj-title {
	font-size: 36px;
	margin: 10px 0 25px;
	font-weight: 700;
	line-height: 1.2;
}

/* ==============================
   HIGHLIGHTS
================================ */
.dr1051proj .proj-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 35px;
}

.dr1051proj .proj-highlights div {
	background: #020617;
	padding: 14px 20px;
	border-radius: 14px;
	font-size: 15px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.dr1051proj .proj-highlights .price {
	background: linear-gradient(135deg, #facc15, #eab308);
	color: #020617;
	font-weight: 800;
}

/* ==============================
   DESCRIPTION + HEADINGS (FIXED)
================================ */
.dr1051proj .proj-desc h3, .dr1051proj .proj-features h3, .dr1051proj .proj-location-section h3
	{
	font-size: 24px;
	margin-bottom: 14px;
}

.dr1051proj .proj-desc p {
	color: #cbd5e1;
	line-height: 1.8;
	font-size: 16px;
}

/* ==============================
   FEATURES
================================ */
.dr1051proj .proj-features {
	margin-top: 40px;
}

.dr1051proj .proj-features ul {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.dr1051proj .proj-features li {
	background: #020617;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 15px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	gap: 10px;
}

.dr1051proj .proj-features li::before {
	content: "✔";
	color: #facc15;
	font-weight: bold;
}

/* ==============================
   GALLERY
================================ */
.dr1051proj .proj-gallery {
	position: sticky;
	top: 100px;
}

.dr1051proj .proj-carousel {
	position: relative;
	width: 100%;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

.dr1051proj .carousel-track {
	display: flex;
	width: 100%;
	transition: transform 0.5s ease;
}

.dr1051proj .carousel-track img {
	width: 100%;
	flex-shrink: 0;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* ==============================
   CAROUSEL BUTTONS
================================ */
.dr1051proj .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(2, 6, 23, 0.75);
	color: #facc15;
	font-size: 26px;
	cursor: pointer;
	z-index: 5;
	transition: all 0.3s ease;
}

.dr1051proj .carousel-btn:hover {
	background: #facc15;
	color: #020617;
}

.dr1051proj .carousel-btn.prev {
	left: 14px;
}

.dr1051proj .carousel-btn.next {
	right: 14px;
}

/* ==============================
   LOCATION SECTION
================================ */
.dr1051proj .proj-location-section {
	max-width: 1200px;
	margin: 90px auto 0;
	text-align: center;
}

.dr1051proj .proj-location-section p {
	color: #cbd5e1;
	margin-bottom: 26px;
	font-size: 16px;
}

.dr1051proj .location-image {
	display: inline-block;
	padding: 12px;
	background: #020617;
	border-radius: 26px;
	box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
	position: relative;
}

.dr1051proj .location-image::after {
	content: "📍 Location Map";
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(2, 6, 23, 0.85);
	color: #facc15;
	padding: 6px 12px;
	font-size: 13px;
	border-radius: 20px;
}

.dr1051proj .location-image img {
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
	display: block;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1051proj .location-image img:hover {
	transform: scale(1.015);
	box-shadow: 0 30px 65px rgba(0, 0, 0, 0.7);
}

/* ==============================
   RESPONSIVE
================================ */
@media ( max-width : 900px) {
	.dr1051proj .proj-container {
		grid-template-columns: 1fr;
	}
	.dr1051proj .proj-gallery {
		position: relative;
		top: auto;
	}
	.dr1051proj .carousel-track img {
		height: 300px;
	}
	.dr1051proj .proj-title {
		font-size: 30px;
	}
}

@media ( max-width : 520px) {
	.dr1051proj .proj-highlights {
		flex-direction: column;
	}
	.dr1051proj .proj-features ul {
		grid-template-columns: 1fr;
	}
	.dr1051proj .location-image {
		padding: 8px;
	}
}