/* ===== GLOBAL STYLES ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--clr-p: #EC1D3D;
	--clr-s: #EC1D3D;
	--clr-t: #ffffff;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.2;
	color: #333;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===== NAVBAR ===== */
.main-navbar {
	padding: 5px 0;
	z-index: 1000;
}

.main-navbar .container-fluid {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;
}

.navbar-brand {
	margin-bottom: -50px;
	margin-left: 100px !important;
}   

.navbar-brand .logo {
	height: 50px;
	width: auto;
}

.navbar-brand .logo-large {
	height: 50px;
	width: auto;
	transition: all 0.3s ease;
}

.navbar-collapse {
	flex-grow: 0;
	width: 100%;
}

.navbar-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.navbar-nav .nav-link {
	padding: 10px 15px;
	font-weight: 500;
	color: #333;
	transition: color 0.3s;
	white-space: nowrap;
}

.navbar-nav .nav-link:hover {
	color: var(--clr-p);
}

.navbar-nav .nav-link.active {
	color: var(--clr-p);
}

.navbar-nav .nav-link i {
	font-size: 18px;
	vertical-align: middle;
	margin-right: 5px;
}

/* ===== BANNER SECTION ===== */
.banner {
	position: relative;
	min-height: 600px;
	overflow: hidden;
}

.banner .glide__slide img {
	width: 100%;
	height: 720px;
	object-fit: cover;
}

.glide__arrow {
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.glide__arrow:hover {
	background: var(--clr-p);
}

.glide__bullet {
	width: 12px;
	height: 12px;
	background: rgba(255,255,255,0.5);
	border: none;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.glide__bullet--active {
	background: var(--clr-p);
}

/* ===== INFO BOX ===== */
.info-box {
	position: absolute;
    top : 10px;
	bottom: 30px;
	left: 30px;
	background: rgba(255,255,255,0.95);
	padding: 30px;
	border-radius: 10px;
	max-width: 400px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.info-box .status {
	display: inline-block;
	background: var(--clr-p);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
}

.info-box h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.info-box h2 {
	font-size: 20px;
	font-weight: 500;
	color: #666;
	margin-bottom: 5px;
}

.info-box h3 {
	font-size: 16px;
	color: #888;
	margin-bottom: 20px;
}

.info-box h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-box h5 {
	font-size: 28px;
	font-weight: 700;
	color: var(--clr-p);
	margin-bottom: 15px;
}

.info-box h6 {
	font-size: 12px;
	color: #666;
	margin-top: 10px;
}

.card-d-custom {
	background: #f8f9fa;
	border-radius: 8px;
	margin: 15px 0;
}

.card-d-custom table {
	width: 100%;
}

.card-d-custom .heading1 {
	font-weight: 700;
	font-size: 18px;
}

.card-d-custom .heading2 {
	color: #666;
	font-size: 14px;
}

.offers {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.offers li {
	padding: 4px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

.offers li:before {
	content: "✓";
	color: var(--clr-p);
	font-weight: bold;
	margin-right: 10px;
}

/* ===== SIDEBAR ===== */
/* Sidebar Compact Style */
sidebar {
    position: fixed;
    right: 0;
    top: 80px;
    width: 280px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px 0 0 12px;
    max-height: calc(100vh - 140px);
    overflow-y: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    z-index: 999;
}

sidebar * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Link buttons */
.og-links a,
.og-open-links a,
.og-open-links button {
    display: block;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: 0.25s ease;
}

/* Default link style */
.og-links a {
    background: #f8f9fa;
    color: #333;
}

.og-links a:hover {
    background: #e9ecef;
}

/* CTA */
.btn-cta {
    background: var(--clr-p);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-cta:hover {
    background: #d01530;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236,29,61,0.3);
}

/* WhatsApp Button */
.btn-wp-icon {
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
}

.btn-wp-icon:hover {
    background: #1EBE58;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* ===== FORM STYLES ===== */
.enq-form {
	margin-top: 10px;
}

.enq-form .form-control {
	margin-bottom: 15px;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
}

.enq-form .form-control:focus {
	border-color: var(--clr-p);
	outline: none;
	box-shadow: 0 0 0 3px rgba(236,29,61,0.1);
}

.enq-form {
	max-width: 400px;  /* Add this line */
	margin: 0 auto;    /* Add this to center it */
}

.consent {
	margin: 15px 0;
}

.consent label {
	font-size: 12px;
	color: #666;
}

.form-check-input:checked {
	background-color: var(--clr-p);
	border-color: var(--clr-p);
}

.pnd-img {
	border-radius: 10px;
	margin-top: 20px;
}

/* ===== MAIN CONTENT ===== */
main {
	margin: 0 400px 0 50px;
	padding: 50px 20px;
}

section {
	margin-bottom: 80px;
}

.section-heading {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #333;
}

.bd-img {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bd-img img {
	width: 100%;
	height: auto;
	transition: transform 0.3s;
}

.bd-img:hover img {
	transform: scale(1.05);
}

/* ===== HIGHLIGHTS ===== */
.highlights-list .point {
	display: flex;
	align-items: flex-start;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: all 0.3s;
}

.highlights-list .point:hover {
	background: #e9ecef;
	transform: translateX(5px);
}

.highlights-list .point i {
	color: var(--clr-p);
	font-size: 24px;
	margin-right: 15px;
	flex-shrink: 0;
}

/* ===== PRICING ===== */
.light {
	background: #f8f9fa;
	padding: 50px 0;
	margin-left: -50px;
	margin-right: -400px;
	padding-left: 50px;
	padding-right: 420px;
}

.price-block {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s;
}

.price-block:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-block h4 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.price-block h5 {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
}

.price-block h6 {
	font-size: 28px;
	font-weight: 700;
	color: var(--clr-p);
	margin-bottom: 20px;
}

/* ===== FLOOR PLAN ===== */
.plan-block .bd-img.blur {
    height: 300px;  /* Fixed height */
	position: relative;
	cursor: pointer;
}

.plan-block .bd-img.blur:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	backdrop-filter: blur(5px);
	z-index: 1;
}

.plan-block .cta-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 20px;
	font-weight: 700;
	z-index: 2;
	text-align: center;
	padding: 15px 30px;
	background: var(--clr-p);
	border-radius: 5px;
}

/* ===== AMENITIES & GALLERY ===== */
.amenities-block-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	padding: 10px;
}

.amenities-block-wrapper a {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.amenities-block-wrapper img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s;
}

.amenities-block-wrapper a:hover img {
	transform: scale(1.1);
}

.amenity-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	color: white;
	padding: 15px;
	font-weight: 600;
}

/* ===== LOCATION ===== */
.bd-iframe iframe {
	width: 100%;
	height: 400px;
	border-radius: 10px;
}

.pg-tabs .nav-pills .nav-link {
	color: #666;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 5px;
	margin: 0 5px;
}

.pg-tabs .nav-pills .nav-link.active {
	background: var(--clr-p);
	color: white;
}

.pg-tabs .tab-content {
	padding: 30px;
	border-radius: 10px;
	margin-top: 20px;
}

.pg-tabs .tab-content ul {
	list-style: none;
	padding: 0;
}

.pg-tabs .tab-content ul li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

/* ===== MOBILE FOOTER CTA ===== */
.mob-ft-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	z-index: 1000;
	grid-template-columns: 1fr 1fr 1fr;
}

.mob-ft-cta a {
	padding: 15px;
	text-align: center;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-size: 14px;
	border-right: 1px solid #eee;
	transition: all 0.3s;
}

.mob-ft-cta a:last-child {
	border-right: none;
}

.mob-ft-cta a:hover {
	background: #f8f9fa;
	color: var(--clr-p);
}

.mob-ft-cta a i {
	display: block;
	font-size: 20px;
	margin-bottom: 5px;
}

/* ===== MODAL ===== */
.enqPopup .modal-content {
	border-radius: 15px;
	overflow: hidden;
}

.enqPopup .modal-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--clr-p);
}

.enq-popup-cp-highlights {
	list-style: none;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	margin-bottom: 20px;
}

.enq-popup-cp-highlights .heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.enq-popup-cp-highlights li {
	display: flex;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
}

.enq-popup-cp-highlights li i {
	color: var(--clr-p);
	font-size: 20px;
	margin-right: 10px;
}

.enq-popup-pj-highlights {
	background: #f8f9fa;
	padding: 20px;
	text-align: center;
}

.enq-popup-pj-highlights h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.enq-popup-pj-highlights .col {
	font-size: 14px;
}

.enq-popup-pj-highlights i {
	color: var(--clr-p);
	margin-right: 5px;
}

/* ===== FOOTER ===== */
footer {
	background: #2c3e50;
	color: white;
	padding: 50px 0 20px;
	margin-right: -400px;
	padding-right: 420px;
}

.footer-project-logo {
	margin: 0 auto 30px;
	filter: brightness(0) invert(1);
}

.reras {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.reras span {
	font-size: 12px;
	padding: 8px 15px;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
}

.disclaimer {
	font-size: 12px;
	line-height: 1.6;
	color: #bdc3c7;
	text-align: center;
	max-width: 900px;
	margin: 30px auto;
}

.footer-link {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	font-size: 14px;
}

.footer-link:hover {
	color: var(--clr-p);
}

.copyright {
	display: block;
	margin-top: 20px;
	font-size: 12px;
	color: #bdc3c7;
}

/* ===== RESPONSIVE ===== */
/* ===========================
   1200px and below
=========================== */
@media (max-width: 1200px) {

    main {
        margin: 0 350px 0 30px;
    }

    sidebar {
        width: 300px;
    }

    .light,
    footer {
        margin-right: -350px;
        padding-right: 370px;
    }
}


/* ===========================
   991px and below
=========================== */
@media (max-width: 991px) {

    main {
        margin: 0 20px;
    }

    sidebar {
        display: none;
    }

    .light,
    footer {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mob-ft-cta {
        display: grid;
    }

    .info-box {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .banner .glide__slide img {
        height: auto;
        min-height: 400px;
    }
}


/* ===========================
   768px and below (Mobile Nav)
=========================== */
@media (max-width: 768px) {

    /* NAVBAR FIX */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .navbar-brand .logo-large {
        height: 55px !important;
        width: auto;
        margin: 0;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
    }

    .navbar-toggler {
        position: static !important;
        margin-left: auto;
    }

    .navbar-collapse {
        margin-top: 10px !important;
    }

    /* Align menu inside hamburger to left */
    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left !important;
        padding-left: 15px;
    }
}


/* ===========================
   576px and below (Small Phones)
=========================== */
@media (max-width: 576px) {

    .info-box {
        padding: 20px;
    }

    main {
        padding: 30px 15px;
    }

    section {
        margin-bottom: 50px;
    }
}
.zero-brokerage-btn {
  padding: 6px 14px;
  background: #EC1D3D;
  color: #fff !important;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 8px;
  animation: pop 1.3s infinite ease-in-out;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.zero-brokerage-btn:hover {
  background: #EC1D3D;
}
