@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
:root {
    --main-color: #bf9747;
    --orange: #ff8a00;
    --light-gray: #f7f7f7;
    --white: #fff;
    --black: #000;
    --bg--green: #18a800;
    --text-dark: #111;
    --text-light: #777;
    --border-green-color: .1rem solid rgb(18 141 125 / 45%);
    --border-main-color: .1rem solid var(--main-color);
    --border-white: 0.1rem solid var(--white);
    --border: .1rem solid #ccc;
    --transition: 220ms ease;
    --shadow: 0 0.9rem 2.2rem rgba(10, 10, 10, 0.06);
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --box-shadow-whatsapp: 1px 1px 4px rgba(60, 60, 60, 0.4);
    --box-shadow-products: 0 6px 10px rgba(0, 0, 0, .2);
    --box-shadow-drop-down: 0 3px 4px rgba(0, 0, 0, .2);
    --box-shadow-green: 0 3px 5px rgb(24 168 0);

    --swiper-navigation-size: 2rem !important;
    --swiper-navigation-color: #bf9747;
    --swiper-theme-color: #bf9747;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
section {
    padding: 6rem 0% 6rem;
    max-width: 85%;
    margin: 0 auto;
}
footer {
    padding: 6rem 0 0;
}
a {
    cursor: pointer;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}
a:active {
    color: var(--black);
}
input,
select,
textarea {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1.3rem 1rem;
    width: 100%;
    border: var(--border-main-color);
    border-radius: .4rem;
    user-select: none;
    color:  #757575;
    box-sizing: border-box;
}
select {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     text-indent: 1px;
     text-overflow: '';
     color: #757575;
     background: transparent;
     cursor: pointer;
}
.select-group {
    position: relative;
}
.select-group::after {
    content: "\ea4a";
    font-family: 'boxicons';
    position: absolute;
    right: 0.6rem;
    top: 1.2rem;
    color: rgb(153, 153, 153);
    font-size: 2rem;
    font-weight: 500;
    pointer-events: none;
}
.btn {
    padding: 1rem 2rem;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: .4rem;
    border: .1rem solid var(--main-color);
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
}
.btn:hover:before {
    opacity: 1;
}
.btn:before {
    background: linear-gradient(86.28deg, #aa7f33, #daba5c);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s ease-in-out;
    z-index: -1;
}
.btn:hover {
    border-color: #daba5c;
    color: var(--white);
}
.btn.reverse {
    background-color: transparent;
    color: var(--main-color);
}
.btn.reverse:hover {
    color: var(--white);
}
.text-white{
	color: var(--white) !important;
}
.color-main{
    color: var(--main-color);
}
.bg-light-gray{
    background-color: var(--light-gray);
}
.text-center{
	text-align: center;
}
.text-left {
    text-align: left;
}
.d-flex{
    display:flex;
}
.gap-1{
    gap: 1rem;
}
.d-grid{
    display:grid;
}
.align-center{
    align-items: center;
}
.p-0{
    padding: 0 !important;
}
.pb-0{
    padding-bottom: 0!important;
}
.pt-0{
    padding-top: 0 !important;
}
.m-0{
    margin: 0 !important;
}
.mb-0{
    margin-bottom: 0 !important;
}
.mb-1{
    margin-bottom: 1rem !important;
}
.mt-0{
    margin-top: 0 !important;
}
/*Swiper*/
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

/*Fixed Btn*/
.fixed-btns {
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 100;
    flex-direction: column;
    gap: 1.5rem;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top a {
    background-color: var(--main-color);
    color: var(--white);
    border: var(--border-main-color);
    padding: 0.5rem;
    border-radius: .4rem;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
.top a i {
     font-size: 3rem;
}
.top #back-to-top.show {
  opacity: 1;
  visibility: visible;
}
a.float {
    width: 6.2rem;
    height: 6.2rem;
    color: var(--white);
	background: var(--bg--green);
    border-radius: 50%;
    box-shadow: var(--box-shadow-whatsapp);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
/* ================= HEADER ================= */
.premium-header {
    position: fixed; /* fixed ensures it stays on top always */
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0.3rem 1.25rem rgba(0, 0, 0, 0.1);
    padding: 0rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}
/* Optional: shrink on scroll */
body.scrolled .premium-header {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}
.logo {
    width: 15%;
}
.logo a img {
    width: 100%;
}

/* Navbar */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links li a {
    text-decoration: none;
    padding: 1.5rem 0;
    color: var(--light-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-links li a:hover {
    color:  var(--main-color);
}
.nav-links li a i {
    font-size: 2rem;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
    list-style: none;
    min-width: 20rem;
    font-size: 1.4rem;
    display: none;
    z-index: 1000;
}
.dropdown-menu li a {
    padding: 1.2rem 2rem;
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}
.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--main-color);
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.8rem;
}
.header-actions a {
    color: var(--light-dark);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.header-actions a:hover {
    color: var(--main-color);
}
.header-actions a i {
    font-size: 2.5rem;
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 4rem;
    line-height: 0;
    cursor: pointer;
    color: var(--light-dark);
}

/*=====Banner hero=====*/
.hero {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
    padding-top: 0; 
    width: 100%;
    max-width: 100%;
}
.hero .swiper {
    max-height: 100vh;
    min-height: 60rem;
    height: 100vh;
}
.hero .swiper-slide {
    position: relative;
}
.hero-hed{
    position: absolute;
    top: 18rem;
    z-index: 1;
    left: calc(3% + 5rem);
    right: calc(3% + 5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
        gap: 4rem;
}
.carosel-heading {
    font-size: 7rem;
    color: var(--white);
    text-shadow: 1px 0 black;
}
.carosel-p {
    font-size: 3rem;
    color: var(--white);
}
.search-widget-container {
    max-width: 100%;
    width: 85%;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Tabs Styling */
.search-widget-container .tabs {
    display: flex;
    gap: 0.5rem;
    padding-bottom: .5rem;
}
.search-widget-container .tab-button {
    background-color: var(--light-gray);
    border: none;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    font-size: 2rem;
    transition: color 0.3s;
    font-weight: 500;
    border-radius: .4rem .4rem 0 0;
}
.tab-button.active {
    color: var(--white);
    border-bottom: 2px solid var(--white);
    background: var(--main-color);
}
/* Search Form Styling */
.search-form {
    display: flex;
    padding: 3.5rem;
    gap: 1rem;
    align-items: center;
    background: var(--white);
    border-radius: 0.4rem;
}
.form-group {
    flex-grow: 1;
}
.search-form input, 
.search-form select {
    width: 100%;
    border: 1px solid #ccc;
}
.search-button {
    font-size: 2rem;
    height: -webkit-fill-available;
}
/* ====Services section===== */
.section-header {
    display: flex;
    margin-bottom: 3rem;
    justify-content: space-between;
}
.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.section-p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}
p{
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: normal;
}
.section-subtitle {
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 52rem;
}
hr {
    border-top: 1px solid #ccc;
    margin: 3.5rem 0;
}
/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:2rem;
}
/* Card */
.icon-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: .4rem;
    text-align: left;
    border: 0.1rem solid #eee;
    transition: 0.3s ease;
    display: grid;
    align-items: center;
    gap: 1rem;
}
.icon-box:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.05);
}
.icon-wrapper {
    margin-bottom: 1rem;
}
.icon-wrapper svg {
    width: 5rem;
    height: 5rem;
    fill: #ACACAC
}
.icon-title {
    font-size: 1.7rem;
    color: var(--text-dark);
    font-weight: 600;
}
.icon-desc {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.4;
    font-weight: 500;
}

/* ====Featured Properties section===== */
.swiper-slide {
    height: auto; 
}
.property-item {
    position: relative;
}
.property-item .cards-swiper {
    padding: 8rem 0 2rem;
}
.cards-swiper .swiper-buttons-top-left {
    position: absolute;
    top: 2.5rem;   /* distance from top */
    right: 4rem;  /* left side */
    display: flex;
    gap: 0.5rem;   /* space between prev & next */
    z-index: 10;
}

/* Optional: style the buttons */
.cards-swiper .swiper-button-prev,
.cards-swiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev,
.testimonialSwiper .swiper-button-next
{
    width: 4rem;
    height: 4rem;
    background: var(--main-color);
    border-radius: .4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cards-swiper .swiper-button-prev,
.testimonialSwiper .swiper-button-prev {
    left: -5rem;
}
.cards-swiper .swiper-button-next,
.testimonialSwiper .swiper-button-next {
    right: -4rem;
}

.cards-swiper .swiper-button-prev::after,
.cards-swiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after,
.testimonialSwiper .swiper-button-next::after
 {
    font-size: 1.5rem;
    font-weight: bold;
}
/* Card */
.property-card {
    background: var(--white);
    border-radius: .4rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(15,23,42,0.04);
}
.property-card:hover{
    transform: translateY(-0.45rem);
    box-shadow: var(--box-shadow);
}
/* Gallery area */
.card-media{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    background: #eaeef2;
}
/* inner gallery swiper */
.gallery-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Labels */
.card-media .labels {
    position: absolute;
    left: 0.9rem;
    top: 0.9rem;
    display: flex;
    gap: 0.5rem;
    z-index: 6;
}
.card-media .label {
    padding: .32rem .6rem;
    border-radius: .2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .01rem;
    box-shadow: 0 0.25rem 0.5rem rgba(2,6,23,0.06);
}
.card-media .label.sale { background: #ef4444; }
.card-media .label.exclusive { background: #0ea5a0; }

/* Hover icons (top-right) */
.media-actions {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 6;
    opacity: 0;
    transform: translateY(-0.25rem);
    transition: opacity var(--transition), transform var(--transition);
}
.property-card:hover .media-actions{
    opacity: 1;
    transform: translateY(0);
}
.action-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.4rem;
    border: none;
    display: inline-grid;
    place-items: center;
    background: rgba(0,0,0,0.52);
    color:var(--white);
    cursor: pointer;
    transition: transform var(--transition);
}
.action-btn:active{ transform: scale(.96); }
.action-btn i{
    font-size: 2rem;
}

/* nav arrows (inner gallery) — subtle */ 
.gallery-controls .swiper-button-next,
.gallery-controls .swiper-button-prev {
    color: var(--white);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .4rem;
    background: #bf9747b8;
}
.gallery-controls .swiper-button-next::after,
.gallery-controls .swiper-button-prev::after {
    font-size: 1rem;
}
.cards-swiper .gallery-controls .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,10px);
}
.cards-swiper .gallery-controls .swiper-button-next {
    right: var(--swiper-navigation-sides-offset,10px);
}
/* Card body */
.card-body{
    padding: 1.05rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1 1 auto;
}
.card-body .price{
    color: var(--black);
    font-weight: 700;
    font-size: 1.8rem;
    padding-bottom: 1rem;
}
.card-body .title{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-body .address{
    font-size: 1.4rem;
    color: var(--text-light);
    display:flex;
    align-items:center;
    gap:.45rem;
}
.meta-row{
    display:flex;
    gap: .85rem;
    align-items:center;
    margin-top: .7rem;
    color: #6b7280;
    font-size: 1.4rem;
}
.meta-row .meta {
    display:flex;
    align-items:center;
    gap:.45rem;
    background: rgba(15,23,42,0.03);
    padding: .25rem .6rem;
    border-radius: .4rem;
}
.meta-row .meta i {
    font-size: 2rem;
}
.card-footer .btn {
    font-size: 1.3rem;
    gap: 0.1rem;
    padding: .8rem 1rem;
}
.card-footer .btn i{
    font-size: 2rem;
}
/* Footer buttons */
.card-footer{
    padding: .8rem 1rem 1rem 1rem;
    display:flex;
    gap: .4rem;
    justify-content: space-between;
}

/* ====Top Communities section===== */
.communities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem; 
    padding-top: 4rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 28rem;
}
.card-item {
    position: relative;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: var(--box-shadow-drop-down);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s;
    background-color: #000;
}
.card-item:hover img {
    transform: scale(1.05);
}
.card-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.3s;
}
.card-item .label, .news-card .label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--main-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-item .button-container {
    position: absolute;
    bottom: 2.25rem;
    left: 2.25rem;
}
.card-item button {
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    color: white;
    border: none;
}
.card-item button:hover {
    color: var(--main-color);
}
.card-item button.btn:before{
    background: transparent;
}
.card-item button svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}
.card-large {
    grid-row: span 2;
}

/* ====Agency Content section===== */
.agency-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.agency-content a {
    color: var(--text-dark);
    font-weight: 600;
}
.feature-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}
.feature {
    display: grid;
    gap: .5rem;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ====Latest New section===== */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
/* News Card (large and small share similar style) */
.news-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.4rem;
}
.news-card .content {
    padding: 1rem 3rem ;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: start;
}
.news-card .title {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-card .date {
    font-size: 1.3rem;
    color: #7b8a99;
}
.news-card .read-more {
    font-size: 1.3rem;
}
/* Small News Grid */
.small-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-card .title.small {
    font-size: 1.4rem;
}
.small-news .news-card {
    grid-template-columns: 1fr 2.5fr;
    gap: 1.5rem;
    margin: 0;
}
.small-news .news-card .content {
    padding: 0;
    gap: 1rem;
}

/* ====Contact Form section===== */
.bg-content-form{
    background-image: linear-gradient(rgb(191 151 71 / 95%), rgb(191 151 71 / 95%)), url(../img/content-contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.main-container {
    display: grid;
    grid-template-columns: 2fr 1.2fr; 
}
.content-section {
    padding: 2rem 7rem;
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 3rem;
}
.text-item {
    display: flex;
    align-items: flex-start;
    font-size: 1.6rem;
}
.text-item .number {
    font-size: 2.3rem;
    font-weight: bold;
    margin-right: 1rem;
}
.text-item p {
    color: var(--white);
}
.text-item:last-child {
    grid-column: 1 / 3;
    justify-content: center;
    width: 50%;
    margin: auto;
}
.form-section {
    background-color :var(--white);
    padding: 3rem 3rem;
    border-radius: 0.4rem;
}
.form-container form {
    display: grid;
    gap: 1rem;
}
.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}
.form-container p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
}
.form-container form label {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}
/* General input styling */
.form-section .input-group {
    display: flex;
    gap: 1rem;
}
.form-section .checkbox-group {
    display: flex;
    align-items: flex-start;
}
.form-section input[type="checkbox"] {
    width: auto;
    margin-right: 1rem;
    margin-top: 3px;
}
.form-section button[type="submit"] {
    width: 100%;
}

/* ====Our Agents section===== */
.agent-card {
    background: var(--white);
    text-align: center;
    padding: 2.2rem;
    height: 100%;
    margin-top: 4rem;
    gap: 2rem;
    transition: 0.3s;
    display: grid;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: var(--main-color);
    border-radius: .8rem;
    box-shadow: var(--box-shadow);
}
.agent-card img {
    width: 10rem;
    height: 10rem;
    border-radius: .4rem;
    object-fit: cover;
    margin: auto;
}
.agent-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: .6rem;
}
.agent-role {
    font-size: 1.2rem;
    color: var(--text-light)
}
.agent-card ul {
    padding: 0;
    list-style: none;
    padding-top: 2rem;
    border-top: 1px solid #bf974747;
    font-size: 1.4rem;
}
.agent-card li strong {
    font-weight: 600;
}
.agent-btn {
    width: 100%;
}

/*==== testimonial Section ====*/
.swiper.testimonialSwiper {
    padding-bottom: 5rem;
}
.testimonial-section {
    text-align: center;
}
.testimonial-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}
/* Google Reviews Row */
.google-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    font-size: 1.6rem;
}
.google-reviews svg {
    width: 5rem;
    height: 5rem;
}
.google-reviews strong {
    font-weight: bolder;
}
/* Cards */
.swiper.testimonialSwiper {
    padding-bottom: 8rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: .4rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    gap: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Text scroll if long */
.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-light);
    height: 12rem;
    overflow-y: auto;
    padding-right: 5px;
}
.testimonial-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.swiper-buttons-bottom {
    position: absolute;
    bottom: 3rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    transform: translate(-50%, -50%);
    left: 50%;
}

/* ====Dubai Area Tags===== */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    border-top: 1px solid #bf974747;
    border-bottom: 1px solid #bf974747;
    padding: 3rem 0 3rem;
    margin-bottom: 3rem;
}
.tags-row a {
    padding: 0.8rem 1.2rem;
    white-space: nowrap;
    font-size: 1.2rem;
}
/* GRID */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.2rem;
    row-gap: 2rem;
}
.tag-grid-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.9px;
}
.tag-links a {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.2s;
}

/* ====Our Partners section===== */
.partners {
    padding-bottom: 3rem;
}
#partners-swiper {
    margin-top: 4rem;
    border-top: 1px solid #bf974747; 
    /* border-bottom: 1px solid #bf974747; */
    padding: 2rem 0;
}
#partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
#partners-swiper .swiper-slide img {
    width: 100%;
    height: 12rem;
    object-fit: contain;
}

/* ======Footer section =====*/
.site-footer {
    background-color: var(--light-gray);
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr 1.5fr;
    max-width: 85%;
    margin: 0 auto;
    padding: 0rem 0 4rem;
}
.footer-column h4 {
    color: var(--main-color); /* Dark blue heading color */
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column li a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}
.footer-column li a:hover {
    color: var(--main-color);
}
/* Newsletter form specific styles */
.newsletter input {
    margin-bottom: 1rem;
}
.newsletter button {
    width: 100%;
}
.newsletter button:hover {
    opacity: 0.9;
}
.credit{
	text-align: center;
	color: var(--text-light);
	padding: 2rem 0;
	border-top: .1rem solid rgb(204 204 204 / 26%);
	display: flex;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
}

/* ====Property-List==== */
/* Breadcrumbs */
.breadcrumb {
    font-size: 1.2rem;
    margin-top: 4rem;
    color: var(--text-light);
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.breadcrumb a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
}
/* Add / after each item */
.breadcrumb a::after,
.breadcrumb span::after {
    content: "/";
    margin: 0 0.8rem;
    color: var(--text-light);
    font-size: 1.5rem;
}
.breadcrumb a:hover,
.breadcrumb span:hover {
    color: var(--main-color);
}
/* Remove / after the last item */
.breadcrumb span:last-child::after {
    content: "";
    margin: 0;
    display: flex;
    align-items: center;
}
.breadcrumb a.icon {
    display: flex;
    align-items: center;
}
.filter-container .search-form {
    padding: 1.5rem;
    border: var(--border);
    box-shadow: var(--box-shadow-drop-down);
    gap: 2rem;
}
.filter-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    justify-content: center;
}
.filter-item label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}
.filter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    height: 100%;
    border-right: 1px solid #ccc;
}
.search-form .filter-item input, .search-form .filter-item select {
    border: none;
    padding: 0;
    height: 4rem;
}

/* Popular Areas */
.popular-areas {
    margin-top: 3rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.popular-areas a {
    padding: 1rem 1rem;
    font-size: 1.2rem;
}
/* Page Wrapper */
.property-listing-section {
    padding-top: 3rem;
}
.page-wrapper {
    display: grid;
    grid-template-columns: 2fr 0.8fr;
    gap: 2rem;
    padding-top: 3rem;
}
.section-ptitle {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 600;
}
.property-listing-section .btn.reverse {
    gap: .5rem;
}
.property-card-list {
    background: var(--white);
    border-radius: 0.4rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: var(--box-shadow);
     margin-bottom: 2rem;
}
.property-card-list .left-img {
    min-width: 0;
}
.property-card-list .card-body {
    padding: 2rem;
}
.property-card-list .visit {
    font-size: 1.2rem;
    background: #eef4ff;
    padding: 0.5rem 1rem;
    width: fit-content;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.property-card-list .card-footer {
    padding: 0;
    gap: 1rem;
    justify-content: left;
}
.sidebar {
    position: sticky;
    top: 9rem; 
    align-self: flex-start;
}
.sidebar h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: var(--light-gray);
    padding: 0.6rem 1rem;
    border-radius: 0.4rem;
    FONT-WEIGHT: 600;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
}
.sidebar ul li a{
    color: var(--text-light);
    transition: color 0.3s;
}
.sidebar ul li a:hover{
    color: var(--main-color);
}
.sidebar .form-section {
    padding: 0;
    padding-top: 2rem;
}
.sidebar .form-container form {
    padding: 0 1rem;
}

/* ====Property-Detail==== */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.main-details h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: var(--text-light);
}
.price-section {
    text-align: right;
}
.price-section .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.mortgage-estimate {
    background-color: #f0f0f0;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    width: fit-content;
    border-radius: 0.4rem;
}
.features-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 1.5rem 0;
}
.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    position: relative;
}
.feature-item i {
    font-size: 2.8rem;
    color: #6b7280;
    margin-right: 1rem;
}
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2.5rem;
    height: 100%;
    border-right: 1px solid #ccc;
}
/* --- GRID LAYOUT --- */
.property-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}
.property-gallery-grid .big {
  grid-row: span 2;
}
.property-gallery-grid img, #property-gallery-popup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:0.4rem;
  cursor: pointer;
}
/* --- POPUP MODAL --- */
.modaldetailpro {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modaldetailpro.active {
  display: flex;
}
.modaldetailpro .modal-content {
    width: 80%;
    max-width: 680px;
}
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  line-height: 2rem;
  padding: 1rem;
  font-size: 4rem;
  color:var(--white);
  cursor:pointer;
}
.property-details-text {
    margin-top: 3rem;
}
.property-details-text h3 {
    margin: 2rem 0;
    font-size: 1.8rem;
}
.details-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}
.details-container .column {
    flex: 1;
}
.details-container .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.details-container .detail-item:last-child {
    border-bottom: none;
}
.details-container .detail-label {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 1.4rem;
    gap: 1rem;
}
.details-container .detail-label img {
    width: 2rem;
    height: 2rem;
}
.details-container .detail-value {
    color: var(--black);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    margin: 2rem 0;
}
.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    margin-top: 2rem;
}
.video-container video {
    height: 450px;
    width: 100%;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
/* QR Section */
.qr-section {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    align-items: center;
}
.qr-section img {
    width: 18rem;
    height: 18rem;
    object-fit: cover;
    border-radius: 0.6rem;
}
.qr-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.qr-details div {
    font-size: 1.5rem;
    color: var(--text-light);
}
.qr-details div span {
    font-weight: 700;
    color: var(--text-dark);
}
/* ====Contact Card Section===== */
.agent-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.profile-pic {
    width: 8rem;
    height: 8rem;
    border-radius: 0.4rem;
}
.agent-info p, 
.agent-info a {
    font-size: 1.4rem;
    margin-bottom: .2rem;
}
.agent-name {
    font-weight: bold;
    color: var(--text-dark);
}
.agent-phone, .agent-email {
    color: var(--text-light);
}
.contact-card .btn {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.3rem;
}
.contact-card .btn i {
    font-size: 2rem;
    margin-right: 0.5rem;
}
.call-btn {
    background-color: var(--orange);
    margin-bottom: 0.75rem; 
}
.whatsapp-btn {
    background-color: var(--bg--green);
}


/*=====responsive breakpoints less than 5200px Queries=====*/
@media (width<=5200px) {
    html {
        font-size: 220%;
    }
}

@media (width<=5000px) {
    html {
        font-size: 200%;
    }
}

@media (width<=4500px) {
    html {
        font-size: 180%;
    }
}

@media (width<=4000px) {
    html {
        font-size: 160%;
    }
}

@media (width<=3500px) {
    html {
        font-size: 140%;
    }
}

@media (width<=3000px) {
    html {
        font-size: 120%;
    }
}

@media (width<=2500px) {
    html {
        font-size: 100%;
    }
}

@media (width<=2000px) {
    html {
        font-size: 80%;
    }
}

@media screen and (max-width: 1920px) and (min-width: 1500px) {
    html {
        font-size: 68%;
    }
}

@media (width<=1500px) {
    html {
        font-size: 60%;
    }
}

@media (width<=1200px) {
    html {
        font-size: 53%;
    }
}

@media (width<=1024px) {
    html {
        font-size: 51%;
    }
}

@media (width<992px) {
    html {
        font-size: 50%;
    }
    .navbar {
        position: fixed;
        top: 7.18rem;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        box-shadow: 0 0.3rem 1.25rem rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        flex-direction: column;
    }
    .navbar.active {
        left: 0;
    }
    .navbar .nav-links {
        flex-direction: column;
        padding: 0 2rem;
        gap: 0rem;
    }
    .dropdown:hover .dropdown-menu {
        display: none; /* hover disabled on mobile */
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background: var(--light-gray);
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .menu-toggle {
        display: block;
    }
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 24rem;
    }
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (width<900px) {
	
}

@media (width<=768px) {
    .logo {
        width: 20%;
    }
    .premium-header {
        padding: 0rem 2%;
    }
    section {
        padding: 5rem 0% 5rem;
        max-width: 95%;
    }
    footer {
        padding: 5rem 0 0;
    }
    .content-section {
        padding: 2rem 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1.5fr 1fr;
        column-gap: 1rem;
        row-gap: 2rem;
        max-width: 95%;
    }
    .hero .swiper {
        max-height: 55vh;
    }
    .search-widget-container {
        width: 95%;
    }
    .hero-hed {
        left: calc(3% + 2rem);
        right: calc(3% + 2rem);
        top: 23rem;
        gap: 2rem;
    }
    .carosel-heading {
        font-size: 5rem;
    }
    .carosel-p {
        font-size: 2.5rem;
    }
    .tab-button {
        padding: 1rem 2rem;
        font-size: 1.8rem;
    }
    .search-form {
        padding: 2.5rem 2rem;
    }
    .section-subtitle {
        line-height: 1.2;
        max-width: 40rem;
    }
    .news-card{
        line-height: 100%;    
    }
    .tag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners {
        padding-bottom: 0;
    }
    #partners-swiper {
        margin-top: 2rem;
    }
    #partners-swiper .swiper-slide img {
        height: 8rem;
    }
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .feature-title {
        font-size: 1.8rem;
    }
    .news-card .title {
        font-size: 1.8rem;
    }
    .small-news, .small-news .news-card {
        gap: 1rem;
    }
    .news-card .content {
        padding: 0.5rem 0 0.5rem 1.5rem;
        gap: 1.5rem;
    }
    .news-container {
        gap: 3rem;
    }
    .btn {
        font-size: 1.5rem;
    }
    .section-header {
        margin-bottom: 1rem;
    }
    .service-grid {
        padding-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .icon-box {
        padding: 2rem 2rem;
    }
    .tag-grid-title {
        font-size: 1.7rem;
        letter-spacing: normal;
    }
    .tag-links a {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .form-section {
         padding: 1rem 2rem;
    }
    .video-container video {
        height: 300px;
    }

}

@media (width<=625px) {
    html {
        font-size: 48%;
    }
    .footer-column:last-child {
        grid-column: 2 / 4;
    }
    .page-wrapper {
        grid-template-columns: 1fr;
    }
    .filter-container .search-form {
        grid-template-columns: 1fr 2fr 1fr;
        row-gap: 1rem;
    }
    /* .filter-container .search-form .filter-item:nth-child(5)  {
        grid-row: 1 /2;
    }
    .filter-container .search-form .filter-item:nth-child(6)  {
        grid-column: 1 /3;
    } */
}

@media (width <=575px) {
    html {
        font-size: 40%;
    }
    .main-container{
        grid-template-columns: 1fr;
    }
    .form-section input[type="checkbox"] {
        margin-top: -2px;
    }
    .bg-content-form {
        background-image: linear-gradient(rgb(191 151 71 / 75%), rgb(191 151 71 / 75%)), url(../img/content-contact.jpg);
    }
    .search-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .search-button:last-child {
        grid-row: 1 / 3;
        grid-column: 3 / 3;
    }
    .search-button i {
        font-size: 2.5rem;
    }
    .section-header {
        display: grid;
    }
    .latest-news .section-header {
        display: flex;
    }
    .property-item .cards-swiper {
        padding: 6.5rem 0 1.5rem;
    }
    .section-subtitle {
        max-width: 100%;
    }
    .card-footer .btn i {
        line-height: 0;
    }
    .communities-grid {
        grid-auto-rows: 20rem;
            gap: 1rem;
    }
    .small-news, .news-card{
        grid-template-columns: repeat(1, 1fr);
    }
    .news-card .content {
        padding: 2rem 0;
    }
    .news-card .title.small {
        font-size: 1.6rem;
    }
}