:root {
	--sq-orange: #f1531a;
	--dark-blue: #091e42;
	--bg-gray: #f8fafc;
}

body {
	font-family: "Plus Jakarta Sans", sans-serif;
	background-color: #fff;
	color: var(--dark-blue);
}

/* --- NAVBAR --- */
.navbar {
	background: white;
	border-bottom: 1px solid #eee;
	padding: 5px 0;
}

.navbar .navbar-nav li {
	font-size: 15px;
}

.dropdown-mega {
	position: static !important;
}


.mega-menu {
	left: 0;
	right: 0;
	margin-top: 0;
	border-radius: 0 0 8px 8px;
}

.mega-links li {
	padding: 4px 0;
}

.mega-links li a {
	text-decoration: none;
	color: #555;
	font-size: 14px;
	transition: color 0.2s;
}

.mega-links li a:hover {
	color: var(--sq-orange);
}

@media (min-width: 992px) {
	.dropdown-mega:hover .mega-menu {
		display: block;
	}
}

@media (min-width: 992px) {

	/* Trigger visibility on hover */
	.nav-item.dropdown:hover>.mega-menu {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.mega-menu {
		display: block;
		visibility: hidden;
		opacity: 0;
		transform: translateY(15px);
		transition: all 0.3s ease-in-out;
		pointer-events: none;
	}

	.nav-item.dropdown:hover>.mega-menu {
		pointer-events: auto;
	}

	.dropdown-toggle::after {
		transition: transform 0.2s;
	}

	.nav-item.dropdown:hover .dropdown-toggle::after {
		transform: rotate(180deg);
	}
}

@media (max-width: 991.98px) {
	.mega-menu {
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		position: relative !important;
		width: 100% !important;
	}

	.show>.mega-menu {
		display: block;
	}
}

.mega-menu {
	max-height: 80vh;
	overflow-y: auto;
}


.heading-title {
	color: #f1531a;
	font-weight: 700;
	font-size: 22px;
}


/*============= mobile NAVBAR =============*/


.mobile-top {
	display: none;
	background: var(--sq-orange);
	padding: 0 12px;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 1050;
}

.logo {
	background-color: var(--sq-orange);
	border-radius: 10px;
}

/* --- HERO & SEARCH --- */
.hero-section{
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://framerusercontent.com/images/mos5BQeAcz6THq6eakCfMbYK11k.jpg?auto=format&fit=crop&w=100');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.filter-container{max-width:500px;margin:10px auto;}

.sq-input{
    background:#fff;
    border-radius:12px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.sq-input input{
    border:none;
    outline:none;
    flex:1;
}

.mobile-search-icon{
    display:none;
    font-size:20px;
    cursor:pointer;
    position:absolute;
    right:12px;
    color:#000;
}

.sq-tabs .sq-tab{
    flex:1;
    padding:10px;
    border:none;
    border-radius:10px;
    font-weight:600;
    background:#fcddd2;
    color:#000;
    cursor:pointer;
    font-size:15px
}

.sq-tabs .sq-tab.active{
    background:var(--sq-orange);
    color:#fff;
}

.sq-filter-btn{
    width:100%;
    background:var(--sq-orange);
    border:none;
    padding:10px;
    border-radius:10px;
    font-weight:bold;
    margin-top:10px;
    font-size:15px;
    color:#fff
}
.filter_heading { font-size: 25px; }
/* -----------------------------
   MOBILE VIEW CHANGES
--------------------------------*/
@media (max-width: 576px) {
    .filter_heading { 
        font-size: 13px; 
    }
    .sq-tabs .sq-tab{
        padding:5px 0;
        font-size: 12px;
    }
    
    .sq-input{
        padding:6px 8px;
    }
    
    .sq-filter-btn{
        display:none;
    }
    
    .mobile-search-icon{
        display:block;
    }
}

/*====================== custom-rent-section ==================*/

.custom-rent-section {
	background: linear-gradient(135deg, #fff5ef, #ffe2d4);
	border-radius: 16px;
	padding: 40px 20px;
	margin-top: 10px;
	box-shadow: 0 8px 20px rgba(241, 83, 26, 0.15);
}

.custom-title {
	font-size: 24px;
	font-weight: 700;
	color: #f1531a;
	margin-bottom: 10px;
}

.custom-subtext {
	font-size: 14px;
	color: #444;
	max-width: 600px;
	margin: 0 auto 20px;
}

.custom-btn {
	display: inline-block;
	background: #f1531a;
	color: #fff;
	font-size: 15px;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}

.custom-btn:hover {
	background: #d84310;
	transform: translateY(-3px);
}

/* Mobile Text Adjustments */
@media(max-width: 576px) {
	.custom-title {
		font-size: 20px;
	}

	.custom-subtext {
		font-size: 13px;
	}

	.custom-btn {
		font-size: 14px;
		padding: 10px 20px;
	}
}




/*======================= features-section ===================*/
.features-section {
	background: linear-gradient(135deg, #fff4ef, #ffffff);
}

.features-section .feature-link {
	text-decoration: none;
	color: inherit;
}

.features-section .feature-box {
	background: #fff;
	border-radius: 18px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid #eee;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.features-section .feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-section .feature-icon {
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, #f1531a, #ff7f4d);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 15px;
	transition: background 0.4s ease;
}

.features-section .feature-box:hover .features-section .feature-icon {
	background: linear-gradient(135deg, #ff7f4d, #f1531a);
}

.features-section .feature-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.features-section .feature-desc {
	color: #666;
	font-size: 14px;
	margin-bottom: 0;
}

@media (max-width: 576px) {
	.features-section .col-custom-mobile {
		width: 33%;
		flex: 0 0 33%;
	}

	.features-section .feature-icon {
		width: 40px;
		height: 40px;
		font-size: 15px;
	}

	.features-section .feature-title {
		font-size: 9px;
	}

	.features-section .feature-desc {
		font-size: 9px;
	}

	.features-section .feature-box {
		padding: 8px;
	}
}

/* --- HIGH DEMAND SCROLLER (Mobile Friendly) --- */
.scroll-container {
	display: flex;
	overflow-x: auto;
	gap: 20px;
	padding: 10px 0;
	scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
	display: none;
}

.demand-card {
	min-width: 300px;
	background: white;
	border-radius: 15px;
	border: 1px solid #eee;
	overflow: hidden;
}

.demand-card img {
	height: 180px;
	width: 100%;
	object-fit: cover;
}

/* --- CITY TILES --- */
.city-box {
	background: #fff;
	border-radius: 12px;
	padding: 10px 0;
	text-align: center;
	/*border: 1.5px solid #f1531a33;*/
	transition: 0.25s ease-in-out;
	height: 100px;
	/* compact uniform size */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.city-box img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 6px;
}

.city-box p {
	font-size: 15px;
	color: #333;
	font-weight: 600;
	margin: 0;
}

.city-card:hover .city-box {
	transform: translateY(-3px);
	border-color: #f1531a;
	box-shadow: 0 4px 10px rgba(241, 83, 26, 0.25);
}

/* Mobile tweaks */
@media(max-width: 600px) {
	.city-box {
		height: 90px;
	}

	.city-box img {
		width: 50px;
		height: 50px;
	}

	.city-box p {
		font-size: 10px;
	}
}


/*================= property section ===================*/
.property-title{
    font-size: 12px;
}
.desc{
    font-size:10px;
    margin: 0;
    padding: 0;
}

/*==================== App Section ==============*/
.app-section {
	background: linear-gradient(135deg, #fff5f0, #fde3d8);
	border-radius: 16px;
	padding: 50px 20px;
	margin-top: 30px;
}

.app-image {
	max-width: 260px;
	display: block;
	margin: auto;
}

.playstore-btn {
	width: 160px;
	transition: 0.3s ease;
}

.playstore-btn:hover {
	transform: scale(1.05);
}

/* Mobile Optimization */
@media(max-width: 576px) {
	.app-image {
		max-width: 180px;
	}

	.playstore-btn {
		width: 140px;
	}
}

/* --- BUTTONS --- */
.btn-sq {
	background: var(--sq-orange);
	color: white;
	border-radius: 50px;
	border: none;
	padding: 10px 25px;
	font-weight: 600;
	font-size: 15px;
}

/*================ footer =================*/
footer {
	background: #0b1629;
	color: #fff;
	padding: 60px 20px 30px;
	font-family: "Poppins", sans-serif;
}

.footer-container {
	max-width: 1300px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 40px;
}

.footer-section h3 {
	font-size: 19px;
	margin-bottom: 18px;
	font-weight: 600;
	position: relative;
}

.footer-section h3::after {
	content: "";
	position: absolute;
	width: 45px;
	height: 3px;
	background: #f1531a;
	left: 0;
	bottom: -6px;
	border-radius: 2px;
}

.footer-section a,
.footer-section p {
	color: #cfd3da;
	font-size: 15px;
	line-height: 1.8;
	text-decoration: none;
}

.footer-section a:hover {
	color: #f1531a;
}

.social-icons a {
	margin-right: 12px;
	font-size: 22px;
	color: #cfd3da;
	transition: 0.3s ease;
}

.social-icons a:hover {
	color: #f1531a;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid #233044;
	color: #a8b0bb;
	font-size: 14px;
}

@media(max-width:600px) {
	footer {
		padding: 40px 15px;
	}

	.footer-section h3 {
		font-size: 17px;
	}

	.footer-section p,
	.footer-section a {
		font-size: 14px;
	}

	.social-icons a {
		font-size: 20px;
	}
}

/* --- BOTTOM NAV --- */
.bottom-nav {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: var(--dark-blue);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	z-index: 1000;
	padding: 10px 0;
}

@media (max-width: 991px) {
	.navbar {
		display: none !important;
	}

	.mobile-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.mega-search {
		border-radius: 15px;
		flex-direction: column;
		padding: 10px;
		margin: 15px;
	}

	.location-wrapper {
		border-right: none;
		border-bottom: 1px solid #eee;
		width: 100%;
		padding-bottom: 10px;
	}

	body {
		padding-bottom: 80px;
	}

	.demand-card {
		min-width: 250px;
	}

}