
/*==================================================
COMMON WEBSITE CSS
==================================================*/

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

:root{

    --gold:#9D7F19;
    --gold-hover:#B8922C;

    --black:#111111;
    --white:#FFFFFF;

    --text:#555555;

    --glass:rgba(255,255,255,.08);

}

.container{

    max-width:1320px;

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#0F172A;
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-info{

    display:flex;
    gap:25px;
    align-items:center;

}

.top-info li{

    display:flex;
    align-items:center;
    gap:8px;

}

.top-call{

    color:#fff;
    font-weight:600;

}

.top-call:hover{

    color:#FFB547;

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#0F172A;
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-info{

    display:flex;
    gap:25px;
    align-items:center;

}

.top-info li{

    display:flex;
    align-items:center;
    gap:8px;

}

.top-call{

    color:#fff;
    font-weight:600;

}

.top-call:hover{

    color:#FFB547;

}

/*==================================================
HEADER
==================================================*/

.main-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(15,23,42,.08);

backdrop-filter:blur(22px);

-webkit-backdrop-filter:blur(22px);

    border-bottom:1px solid rgba(157,127,25,.18);

    transition:.35s ease;

}

.navbar{

min-height:105px;

padding:18px 0;

}

.navbar-brand img{

    height:90px;

    width:auto;

    transition:.35s ease;

}

.navbar-nav .nav-link{

    font-family:'Cormorant Garamond',serif;

    font-size:22px;

    font-weight:600;

    color:var(--gold);

    margin:0 18px;

    letter-spacing:.5px;

    position:relative;

    transition:.35s;

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.35s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

width:100%;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

 color:#E0C46C !important;

}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:var(--primary);

}

.header-btn{

background:transparent;

border:2px solid var(--gold);

color:var(--gold);

padding:12px 30px;

border-radius:40px;

font-family:'Cormorant Garamond',serif;

font-size:20px;

font-weight:600;

transition:.35s;

}

.header-btn:hover{

    background:#C5A253;

    color:#fff;

    border-color:#C5A253;

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(197,162,83,.30);

}

.header-btn i{

    font-size:18px;

    transition:.35s;

}

.header-btn:hover i{

    transform:rotate(-10deg) scale(1.1);

}

@media(max-width:991px){

.top-bar{

display:none;

}

.navbar-brand img{

height:50px;

}

.header-btn{

display:none;

}

.navbar-nav{

margin:20px 0;

}

.navbar-nav .nav-link{

margin:8px 0;

}

}




/*==================================================
Hero Section
==================================================*/

.hero-section{

    position:relative;

    min-height:850px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(157,127,25,.10),
    transparent 35%),

    linear-gradient(
    135deg,
    #07111f 0%,
    #0c1a2f 45%,
    #13243d 100%);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(4,10,20,.25) 0%,
        rgba(4,10,20,.12) 50%,
        rgba(4,10,20,.05) 100%
    );

    z-index:1;

}

.hero-content{
    position:relative;
    z-index:2;
    min-height:760px;
    display:flex;
    align-items:center;
}

.hero-text{
    max-width:620px;
}

.hero-badge{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:25px;
    letter-spacing:1px;
}

.hero-text h1{
    font-size:72px;
    font-weight:800;
    line-height:1.08;
    color:#fff;
    margin-bottom:25px;
}

.hero-text h1 span{
    color:#ffb547;
}

.hero-text p{
    color:#fff;
    font-size:20px;
    line-height:34px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:25px;
}

.hero-btn{
    background:#2563eb;
    color:#fff;
    padding:18px 34px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.hero-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

.watch-btn{
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
}

.watch-btn i{
    font-size:45px;
    margin-right:12px;
}

.watch-btn:hover{
    color:#ffb547;
}

@media(max-width:991px){

.hero-section{
    height:auto;
    padding:100px 0;
}

.hero-content{
    min-height:auto;
}

.hero-text h1{
    font-size:44px;
}

.hero-text p{
    font-size:17px;
    line-height:30px;
}

.hero-buttons{
    flex-wrap:wrap;
}

}


/*==================================================
Premium Floating Search
==================================================*/

.property-search-section{

    position:relative;

    margin-top:-70px;

    z-index:50;

    margin-bottom:40px;

}

.search-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    border:1px solid #eef2f7;

}

.search-tabs{

    display:flex;

    gap:12px;

    margin-bottom:30px;

}

.search-tabs button{

    border:none;

    background:#EEF2FF;

    color:#555;

    padding:13px 28px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.30s;

}

.search-tabs button.active,

.search-tabs button:hover{

    background:#2563EB;

    color:#fff;

}

.search-card .form-label{

    font-size:14px;

    font-weight:600;

    color:#374151;

    margin-bottom:10px;

}

.search-input{

    position:relative;

}

.search-input i{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    color:#94A3B8;

}

.search-card .form-control,

.search-card .form-select{

    height:58px;

    border-radius:12px;

    border:1px solid #DCE3EB;

    box-shadow:none;

    font-size:15px;

}

.search-card .form-control{

    padding-right:45px;

}

.search-card .form-control:focus,

.search-card .form-select:focus{

    border-color:#2563EB;

    box-shadow:0 0 0 .18rem rgba(37,99,235,.15);

}

.search-btn{

    height:58px;

    border:none;

    border-radius:12px;

    background:#2563EB;

    color:#fff;

    font-size:16px;

    font-weight:700;

    transition:.30s;

}

.search-btn:hover{

    background:#1D4ED8;

}

@media(max-width:991px){

.property-search-section{

    margin-top:40px;

    margin-bottom:50px;

}

.search-card{

    padding:20px;

}

.search-tabs{

    flex-wrap:wrap;

}

.search-tabs button{

    width:100%;

}

.search-btn{

    width:100%;

    margin-top:10px;

}

}




/*==================================================
Featured Properties
==================================================*/

.featured-properties{
    padding:90px 0;
    background:#F8FAFC;
}

.section-subtitle{
    display:inline-block;
    color:#2563EB;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:15px;
}

.section-text{
    color:#64748B;
    font-size:17px;
    max-width:600px;
}

.view-all-btn{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.view-all-btn:hover{
    background:#1D4ED8;
    color:#fff;
}

.property-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.property-card:hover{
    transform:translateY(-8px);
}

.property-image{
    position:relative;
}

.property-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.property-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#2563EB;
    color:#fff;
    padding:8px 15px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
}

.property-content{
    padding:25px;
}

.property-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.property-content p{
    color:#64748B;
    margin-bottom:18px;
}

.property-price{
    color:#2563EB;
    font-size:28px;
    font-weight:800;
    margin-bottom:18px;
}

.property-info{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    color:#475569;
    font-size:15px;
}

.property-info span i{
    color:#2563EB;
    margin-right:5px;
}

@media(max-width:991px){

.section-title{
    font-size:32px;
}

.view-all-btn{
    margin-top:20px;
}

.property-image img{
    height:220px;
}

}




/*==================================================
Browse Property Categories
==================================================*/

.categories-section{

    padding:90px 0;

    background:#ffffff;

}

.section-tag{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    color:#2563eb;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:12px;

}

.section-desc{

    font-size:17px;

    color:#64748b;

    margin:0;

}

.view-all-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    background:#2563eb;

    color:#fff;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.view-all-btn:hover{

    background:#1d4ed8;

    color:#fff;

    transform:translateY(-3px);

}

/*==============================
Category Card
==============================*/

.category-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.category-icon{

    width:82px;

    height:82px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.category-icon i{

    font-size:34px;

}

/*==============================
Gradient Icons
==============================*/

.apartment{

    background:linear-gradient(135deg,#dbeafe,#bfdbfe);

}

.apartment i{

    color:#2563eb;

}

.villa{

    background:linear-gradient(135deg,#ede9fe,#ddd6fe);

}

.villa i{

    color:#7c3aed;

}

.house{

    background:linear-gradient(135deg,#dcfce7,#bbf7d0);

}

.house i{

    color:#16a34a;

}

.commercial{

    background:linear-gradient(135deg,#ffedd5,#fed7aa);

}

.commercial i{

    color:#ea580c;

}

.plot{

    background:linear-gradient(135deg,#fef9c3,#fde68a);

}

.plot i{

    color:#ca8a04;

}

.office{

    background:linear-gradient(135deg,#fee2e2,#fecaca);

}

.office i{

    color:#dc2626;

}

/*==============================
Text
==============================*/

.category-card h5{

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;

}

.category-card p{

    margin:0;

    color:#64748b;

    font-size:15px;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.categories-section{

    padding:70px 0;

}

.section-title{

    font-size:32px;

}

.section-desc{

    margin-bottom:25px;

}

.view-all-btn{

    margin-top:20px;

}

.category-card{

    padding:28px 15px;

}

.category-icon{

    width:70px;

    height:70px;

}

.category-icon i{

    font-size:28px;

}

.category-card h5{

    font-size:18px;

}

}



/*==================================================
Popular Locations
==================================================*/

.locations-section{

    padding:90px 0;

    background:#ffffff;

}

.location-card{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:18px;

    height:240px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.location-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.location-card:hover img{

    transform:scale(1.08);

}

.location-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}

.location-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:22px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

}

.location-overlay h5{

    margin:0;

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.location-overlay span{

    display:block;

    margin-top:6px;

    color:#f1f5f9;

    font-size:14px;

    font-weight:500;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.locations-section{

    padding:70px 0;

}

.location-card{

    height:190px;

}

.location-overlay{

    padding:18px;

}

.location-overlay h5{

    font-size:18px;

}

.location-overlay span{

    font-size:13px;

}

}


/*==================================================
How It Works - Premium Luxury
==================================================*/

.how-section{
    padding:110px 0;
    background:linear-gradient(180deg,#fffdf8 0%,#f8f5ef 50%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

.how-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(181,139,34,.05);
    border-radius:50%;
    top:-180px;
    left:-150px;
}

.how-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(181,139,34,.04);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}

.section-heading{
    position:relative;
    z-index:2;
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    color:#b58b22;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-heading h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    font-weight:700;
    color:#1b2340;
    margin-bottom:18px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:32px;
}

.step-card{
    position:relative;
    background:#fff;
    border:1px solid rgba(181,139,34,.18);
    border-radius:24px;
    padding:40px 30px;
    height:100%;
    text-align:center;
    transition:.45s;
    box-shadow:0 20px 45px rgba(0,0,0,.05);
    overflow:hidden;
}

.step-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#b58b22;
    transform:scaleX(0);
    transition:.4s;
}

.step-card:hover::before{
    transform:scaleX(1);
}

.step-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(181,139,34,.18);
}

.step-number{
    width:65px;
    height:65px;
    border-radius:50%;
    margin:auto auto 20px;
    background:#b58b22;
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 35px rgba(181,139,34,.30);
}

.step-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:0 auto 25px;
    background:#faf4e7;
    color:#b58b22;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.step-card:hover .step-icon{
    background:#b58b22;
    color:#fff;
    transform:rotateY(180deg);
}

.step-card h5{
    font-size:25px;
    font-weight:700;
    color:#1b2340;
    margin-bottom:15px;
}

.step-card p{
    color:#6b7280;
    font-size:15px;
    line-height:30px;
    margin-bottom:30px;
}

.step-arrow{
    width:52px;
    height:52px;
    border-radius:50%;
    margin:auto;
    background:#faf4e7;
    color:#b58b22;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    font-size:18px;
}

.step-card:hover .step-arrow{
    background:#b58b22;
    color:#fff;
    transform:translateX(6px);
}

@media(max-width:991px){

    .how-section{
        padding:80px 0;
    }

    .section-heading h2{
        font-size:36px;
    }

    .step-card{
        margin-bottom:25px;
    }

}







/*==================================================
List Property CTA
==================================================*/

/*==================================================
Premium List Property CTA
==================================================*/

.list-property-section{
    padding:110px 0;
    background:linear-gradient(180deg,#fffdf8 0%,#f8f5ef 50%,#ffffff 100%);
}

.list-property-banner{

    position:relative;
    overflow:hidden;

    border-radius:30px;

    padding:80px 70px;

    background:
    linear-gradient(rgba(20,28,48,.92),rgba(20,28,48,.92)),
    url("../assets/images/banner/list-property.webp");

    background-size:cover;
    background-position:center;

    border:1px solid rgba(181,139,34,.30);

    box-shadow:
    0 35px 80px rgba(0,0,0,.20);

}

.list-property-banner::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(181,139,34,.08);

    top:-120px;
    right:-100px;

}

.list-property-banner::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(181,139,34,.05);

    left:-80px;
    bottom:-100px;

}

.list-property-content{

    position:relative;
    z-index:2;

}

.list-property-content span{

    display:inline-block;

    color:#d8b04d;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:18px;

}

.list-property-content h2{

    font-family:'Playfair Display',serif;

    font-size:54px;

    font-weight:700;

    color:#ffffff;

    line-height:1.2;

    margin-bottom:22px;

}

.list-property-content h2 span{

    color:#d8b04d;

    letter-spacing:0;

    text-transform:none;

    font-size:inherit;

}

.list-property-content p{

    color:rgba(255,255,255,.82);

    font-size:17px;

    line-height:32px;

    max-width:620px;

    margin-bottom:35px;

}

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.cta-features div{

    color:#ffffff;

    font-size:15px;

    font-weight:500;

}

.cta-features i{

    color:#d8b04d;

    margin-right:8px;

}

.list-property-right{

    display:flex;

    justify-content:center;

    align-items:center;

    height:100%;

    position:relative;

    z-index:2;

}

.list-property-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:20px 42px;

    border-radius:60px;

    background:#b58b22;

    color:#fff;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 20px 40px rgba(181,139,34,.35);

}

.list-property-btn:hover{

    background:#d6a62d;

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 30px 50px rgba(181,139,34,.45);

}

@media(max-width:991px){

.list-property-banner{

    padding:50px 30px;

    text-align:center;

}

.list-property-content h2{

    font-size:38px;

}

.cta-features{

    justify-content:center;

}

.list-property-right{

    margin-top:40px;

}

}


/*==================================================
Premium Newsletter
==================================================*/

.newsletter-section{

    padding:90px 0;

    background:#f8f6f1;

}

.newsletter-box{

    background:#ffffff;

    border:1px solid rgba(181,139,34,.20);

    border-radius:30px;

    padding:60px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.newsletter-box::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(181,139,34,.06);

    top:-120px;

    right:-80px;

}

.newsletter-content{

    position:relative;

    z-index:2;

}

.newsletter-content span{

    display:inline-block;

    color:#b58b22;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.newsletter-content h2{

    font-family:'Playfair Display',serif;

    color:#16213E;

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}

.newsletter-content h2 span{

    color:#b58b22;

}

.newsletter-content p{

    color:#666;

    font-size:16px;

    line-height:30px;

    margin-bottom:28px;

}

.newsletter-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.newsletter-features div{

    color:#16213E;

    font-size:15px;

    font-weight:500;

}

.newsletter-features i{

    color:#b58b22;

    margin-right:8px;

}

.newsletter-form{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:18px;

    height:100%;

    position:relative;

    z-index:2;

}

.newsletter-form input{

    height:62px;

    border-radius:50px;

    border:2px solid #ececec;

    padding:0 25px;

    font-size:16px;

    background:#fff;

}

.newsletter-form input:focus{

    border-color:#b58b22;

    box-shadow:none;

}

.newsletter-form button{

    height:62px;

    border:none;

    border-radius:50px;

    background:#b58b22;

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.newsletter-form button:hover{

    background:#d2a332;

    transform:translateY(-3px);

}

@media(max-width:991px){

.newsletter-section{

    padding:70px 0;

}

.newsletter-box{

    padding:40px 25px;

    text-align:center;

}

.newsletter-content h2{

    font-size:34px;

}

.newsletter-features{

    justify-content:center;

}

.newsletter-form{

    margin-top:30px;

}

}



/*==================================================
Premium Footer
==================================================*/

.main-footer{

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right, rgba(200,155,44,.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(200,155,44,.05), transparent 30%),
    linear-gradient(180deg,#18243d 0%,#10192d 45%,#0a1222 100%);

    color:#d8dde8;

    padding:90px 0 0;

    border-top:1px solid rgba(200,155,44,.20);

}

.main-footer::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:1px;

    background:linear-gradient(90deg,
    transparent,
    #c89b2c,
    transparent);

}



.footer-logo{

    height:80px;

    margin-bottom:18px;

}

.footer-tagline{

    font-size:14px;

    color:#c89b2c;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.footer-about{

    font-size:16px;

    line-height:31px;

    color:#c7cedd;

    margin-bottom:35px;

    max-width:380px;

}

.main-footer h4{

    font-family:'Playfair Display',serif;

    font-size:26px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:28px;

    position:relative;

}

.main-footer::after{

    content:"";

    position:absolute;

    top:-180px;

    right:-120px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,155,44,.05);

    filter:blur(30px);

}

.main-footer ul{

    margin:0;

    padding:0;

    list-style:none;

}

.main-footer ul li{

    margin-bottom:15px;

}

.main-footer ul li a{

    color:#d7d9e3;

    transition:.35s;

    text-decoration:none;

}

.main-footer ul li a:hover{

    color:#c89b2c;

    padding-left:8px;

}


.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    line-height:30px;

}

.footer-contact i{

    color:#c89b2c;

    margin-top:5px;

    font-size:17px;

}

.footer-social{

    display:flex;

    gap:14px;

}


.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    border:1px solid rgba(200,155,44,.30);

    background:rgba(255,255,255,.04);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.footer-social a:hover{

    background:#c89b2c;

    color:#fff;

    transform:translateY(-5px);

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin-top:55px;

}


.footer-bottom{

    padding:24px 0;

    color:#c7cedd;

    font-size:15px;

}

.footer-bottom a{

    color:#c89b2c;

    font-weight:600;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#f2c14e;


}

@media(max-width:991px){

.main-footer{

    text-align:center;

}

.footer-about{

    margin:auto auto 30px;

}

.main-footer h4::after{

    left:50%;

    transform:translateX(-50%);

}


.footer-social{

    justify-content:center;

    margin-bottom:30px;

}

.footer-contact li{

    justify-content:center;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom .text-md-end{

    margin-top:12px;

}

}

/*==================================================
ABOUT HERO
==================================================*/

.about-hero{

    padding:190px 0 100px;

    background:linear-gradient(180deg,#faf8f3 0%,#ffffff 100%);

    text-align:center;

}

.section-tag{

    display:inline-block;

    margin-bottom:20px;

    color:#9D7F19;

    font-family:'Cormorant Garamond',serif;

    font-size:18px;

    letter-spacing:4px;

    text-transform:uppercase;

}

.about-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    font-weight:700;

    color:#111;

    line-height:1.1;

    margin-bottom:25px;

}

.about-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#555;

}

@media(max-width:991px){

.about-hero{

padding:140px 20px 70px;

}

.about-hero h1{

font-size:42px;

}

.about-hero p{

font-size:17px;

line-height:1.8;

}

.section-tag{

font-size:15px;

letter-spacing:3px;

}

}

/*==================================================
ABOUT STORY
==================================================*/

.about-story{

    padding:90px 0;

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#9D7F19;

    color:#fff;

    padding:22px 30px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.20);

}

.experience-box h2{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    margin:0;

}

.experience-box span{

    font-size:15px;

}

.about-title{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    color:#111;

    margin-bottom:25px;

}

.about-story p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.about-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:40px;

}

.stat-box{

    background:#faf8f3;

    padding:25px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.stat-box h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#9D7F19;

    margin-bottom:8px;

}

.stat-box span{

    font-size:16px;

    color:#555;

}

@media(max-width:991px){

.about-story{

padding:70px 20px;

}

.about-title{

font-size:38px;

}

.about-stats{

grid-template-columns:1fr;

}

.experience-box{

left:15px;

bottom:15px;

padding:18px;

}

}


/*==================================================
MISSION SECTION
==================================================*/

.mission-section{

    padding:100px 0;

    background:#faf8f3;

}

.mission-heading{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    color:#111;

    margin-bottom:18px;

}

.mission-subtitle{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.mission-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid rgba(157,127,25,.12);

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#9D7F19;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.mission-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:18px;

    color:#111;

}

.mission-card p{

    font-size:17px;

    line-height:1.9;

    color:#666;

}

@media(max-width:991px){

.mission-section{

padding:70px 20px;

}

.mission-heading{

font-size:40px;

}

.mission-subtitle{

font-size:17px;

}

.mission-card{

padding:35px 25px;

}

.mission-icon{

width:75px;

height:75px;

font-size:28px;

}

}


/*==================================================
ABOUT CTA
==================================================*/

.about-cta{

padding:90px 0;

background:#111;

color:#fff;

}

.about-cta h2{

font-family:'Cormorant Garamond',serif;

font-size:58px;

margin:20px 0;

line-height:1.2;

}

.about-cta p{

font-size:18px;

line-height:1.9;

color:#ddd;

}

.about-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 38px;

background:#9D7F19;

color:#fff;

border-radius:50px;

font-family:'Cormorant Garamond',serif;

font-size:22px;

transition:.35s;

}

.about-btn:hover{

background:#111;

color:#fff;

border:2px solid #9D7F19;

transform:translateY(-3px);

}

/*==================================================
TEAM
==================================================*/

.team-section{

padding:100px 0;

background:#fff;

}

.team-heading{

font-family:'Cormorant Garamond',serif;

font-size:56px;

}

.team-card{

text-align:center;

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.35s;

}

.team-card:hover{

transform:translateY(-8px);

}

.team-card img{

width:100%;

height:420px;

object-fit:cover;

}

.team-card h4{

margin-top:25px;

font-family:'Cormorant Garamond',serif;

font-size:34px;

}

.team-card span{

display:block;

padding-bottom:30px;

color:#9D7F19;

}

/*==================================================
TRUST
==================================================*/

.trust-banner{

padding:80px 0;

background:#faf8f3;

text-align:center;

}

.trust-banner h3{

font-family:'Cormorant Garamond',serif;

font-size:56px;

color:#9D7F19;

margin-bottom:10px;

}

.trust-banner span{

font-size:18px;

color:#555;

}

@media(max-width:991px){

.about-cta{

padding:70px 20px;

text-align:center;

}

.about-cta h2{

font-size:40px;

}

.team-heading{

font-size:40px;

}

.team-card img{

height:320px;

}

.trust-banner{

padding:60px 20px;

}

.trust-banner h3{

font-size:40px;

}

}


/*==================================================
HERO PART 1B
Typography + Mobile First
==================================================*/

/* Hero Section */

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#FAF8F3;

}

.hero-container{

    position: relative;

    z-index: 2;

}

.hero-overlay{

    position:absolute;

    inset:0;

    pointer-events:none;

}

/* Left */

.hero-left{

    text-align:center;

}

/* Badge */

.hero-badge{

    margin-bottom:18px;

}

.hero-badge span{

    display:inline-block;

    padding:8px 18px;

    border:1px solid #9D7F19;

    border-radius:50px;

    color:#9D7F19;

    font-family:'Montserrat',sans-serif;

    font-size:12px;

    font-weight:600;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

/* Heading */

.hero-title{

    font-family:'Cormorant Garamond',serif;

    font-size:44px;

    font-weight:700;

    line-height:1.15;

    color:#111;

    margin-bottom:22px;
    text-shadow:0 2px 10px rgba(0,0,0,.18);

}

.hero-title span{

    color:#9D7F19;

}

/* Description */

.hero-description{

    font-family:'Montserrat',sans-serif;

    font-size:16px;

    line-height:1.9;

    color:#666;

    margin-bottom:30px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

/* Trust */

.hero-trust{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.trust-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-family:'Montserrat',sans-serif;

    font-size:15px;

    color:#444;

}

.trust-item i{

    color:#9D7F19;

    font-size:18px;

}

/* Right */

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    height:auto;

}


@media (min-width:768px){

.hero-title{

font-size:58px;

}

.hero-description{

font-size:17px;

}

.hero-buttons{

flex-direction:row;

justify-content:center;

}

.hero-trust{

flex-direction:row;

justify-content:center;

flex-wrap:wrap;

}

}


@media (min-width:992px){

.hero-section{

padding:180px 0 120px;

}

.hero-left{

text-align:left;

}

.hero-title{

font-size:72px;

}

.hero-description{

max-width:560px;

font-size:18px;

}

.hero-buttons{

justify-content:flex-start;

}

.hero-trust{

justify-content:flex-start;

}

.hero-right{

margin-top:0;

}

}




/*==================================================
HERO PART 1C
Buttons + Floating Cards + Luxury Image
==================================================*/

/* Primary Button */

.hero-primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 30px;

    background:#9D7F19;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-family:'Montserrat',sans-serif;

    font-weight:600;

    transition:.35s;

    border:2px solid #9D7F19;

}

.hero-primary-btn:hover{

    background:#111;

    border-color:#111;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* Secondary Button */

.hero-secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 30px;

    border:2px solid #9D7F19;

    border-radius:60px;

    text-decoration:none;

    color:#111;

    background:#fff;

    font-family:'Montserrat',sans-serif;

    font-weight:600;

    transition:.35s;

}

.hero-secondary-btn:hover{

    background:#9D7F19;

    color:#fff;

    transform:translateY(-3px);

}

/* Hero Image */

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:28px;

    box-shadow:0 35px 80px rgba(0,0,0,.15);

    transition:.45s;

}

.hero-image:hover img{

    transform:scale(1.02);

}

/* Floating Cards */

.experience-card,
.sold-card,
.rating-card{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(157,127,25,.18);

    border-radius:18px;

    padding:16px 20px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    text-align:center;

    margin-top:18px;

}

.experience-card h3,
.sold-card h3,
.rating-card h3{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#9D7F19;

}

.experience-card p,
.sold-card p,
.rating-card p{

    margin:6px 0 0;

    font-family:'Montserrat',sans-serif;

    font-size:14px;

    color:#666;

}

@media(min-width:992px){

.hero-right{

position:relative;

}

.experience-card{

    top:-25px;
    left:-45px;

}

.sold-card{

    bottom:-25px;
    left:20px;

}

.rating-card{

    top:80px;
    right:-55px;

}

}

/*==================================================
HERO PART 1D
Luxury Hero Final Layout
==================================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#F8F6F2;

}

/* Gold Glow */

.hero-overlay{

    position:absolute;

    inset:0;

    background:transparent;

    z-index:1;

}

/* Container */

.hero-container{

    position:relative;

    z-index:2;

}

/* Row */

.hero-row{

    align-items:center;

}

/* Right */

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Image */

.hero-image{

    position:relative;

    z-index:2;

    max-width:680px;

}

.hero-image img{

    width:100%;

    display:block;

    border-radius:28px;

    object-fit:cover;

}

/* Floating Cards */

.experience-card,
.sold-card,
.rating-card{

    position:absolute;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border-radius:20px;

    padding:18px 22px;

    box-shadow:0 18px 50px rgba(0,0,0,.12);

}

/* Position */

/*=====================================
Triangle Card Layout
=====================================*/

.experience-card{

    position:absolute;

    top:-30px;

    left:40px;

    width:180px;

    z-index:20;

}

.sold-card{

    position:absolute;

    bottom:-30px;

    left:-40px;

    width:190px;

    z-index:20;

}

.rating-card{

    position:absolute;

    top:90px;

    right:-45px;

    width:180px;

    z-index:20;

}

/* Scroll */

.scroll-indicator{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-family:'Montserrat',sans-serif;

    font-size:14px;

}


@media(max-width:991px){

.hero-section{

min-height:auto;

padding:130px 0 90px;

}

.hero-left{

margin-bottom:50px;

}

.hero-image{

max-width:100%;

}

.experience-card,
.sold-card,
.rating-card{

position:relative;

top:auto;

left:auto;

right:auto;

bottom:auto;

margin-top:15px;

}

.scroll-indicator{

display:none;

}

}

@media(min-width:1200px){

.hero-title{

font-size:82px;

}

.hero-description{

max-width:560px;

}

.hero-image{

max-width:700px;

}

}









/*==================================================
HOME HERO FINAL - PART 1A
==================================================*/

.hero-section{
    position:relative;
    overflow:hidden;
    background:#F8F6F2;
    padding:180px 0 130px;
}

.hero-container{
    position:relative;
    z-index:5;
}

.hero-row{
    align-items:center;
}

.hero-left{
    position:relative;
    z-index:5;
}

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Background Shapes */

.hero-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-180px;

    top:50%;

    transform:translateY(-50%);

    background:radial-gradient(
        circle,
        rgba(157,127,25,.12) 0%,
        rgba(157,127,25,.05) 45%,
        transparent 75%
    );

}

.hero-section::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    left:-120px;

    bottom:-120px;

    background:rgba(157,127,25,.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:transparent;

}





/*==================================================
HOME HERO FINAL - PART 1B
Hero Image + Floating Cards
==================================================*/

/* Bigger Image */

.hero-image{
    position:relative;
    max-width:680px;
    width:100%;
}

.hero-image img{
    width:100%;
    border-radius:28px;
    display:block;
    object-fit:cover;
    box-shadow:0 35px 80px rgba(0,0,0,.18);
}

/* Floating Cards */

.experience-card,
.sold-card,
.rating-card{

    position:absolute;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    border-radius:18px;

    padding:18px 24px;

    min-width:170px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.experience-card{

    top:35px;

    left:-60px;

}

.sold-card{

    bottom:35px;

    left:-35px;

}

.rating-card{

    top:90px;

    right:-50px;

}

.experience-card h3,
.sold-card h3,
.rating-card h3{

    font-family:'Cormorant Garamond',serif;

    color:#9D7F19;

    font-size:34px;

    margin-bottom:5px;

}

.experience-card p,
.sold-card p,
.rating-card p{

    margin:0;

    font-size:14px;

    color:#666;

}

/* Mobile */

@media(max-width:991px){

.hero-image{
    max-width:100%;
}

.experience-card,
.sold-card,
.rating-card{

    position:relative;

    top:auto;
    left:auto;
    right:auto;
    bottom:auto;

    margin-top:15px;
}

}

/*==================================================
SEARCH FINAL - PART 2A
Card Layout + Responsive Base
==================================================*/

.property-search-section{

    position:relative;
    margin-top:-90px;
    z-index:50;
    padding:0 15px 90px;

}

.search-card{

    background:#ffffff;

    border-radius:28px;

    padding:35px;

    border:1px solid rgba(157,127,25,.12);

    box-shadow:
    0 20px 60px rgba(0,0,0,.08),
    0 8px 25px rgba(157,127,25,.05);

    transition:.35s;

}

.search-card:hover{

    transform:translateY(-3px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.10),
    0 10px 30px rgba(157,127,25,.08);

}


.search-card form .row{

    align-items:end;

}

.search-card .col-lg-3,
.search-card .col-lg-2,
.search-card .col-lg-1{

    margin-bottom:0;

}

@media (max-width:991px){

.property-search-section{

    margin-top:40px;

    padding:0 15px 60px;

}

.search-card{

    padding:25px;

    border-radius:22px;

}

.search-card form .row{

    row-gap:18px;

}

}

@media (max-width:767px){

.property-search-section{

    margin-top:25px;

    padding:0 12px 45px;

}

.search-card{

    padding:18px;

    border-radius:18px;

}

.search-card form .row > div{

    margin-bottom:15px;

}

.search-card form .row > div:last-child{

    margin-bottom:0;

}

}


/*==================================================
SEARCH FINAL - PART 2B
Premium Tabs
==================================================*/

.search-tabs{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
    flex-wrap:wrap;

}

.search-tabs .nav-link,
.search-tabs .tab-btn{

    border:none;
    background:#F8F6F2;
    color:#555;
    font-weight:600;
    font-family:'Montserrat',sans-serif;

    padding:14px 30px;

    border-radius:14px;

    transition:.35s;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.search-tabs .nav-link:hover,
.search-tabs .tab-btn:hover{

    background:#9D7F19;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(157,127,25,.25);

}

.search-tabs .active,
.search-tabs .nav-link.active,
.search-tabs .tab-btn.active{

    background:#9D7F19;

    color:#fff;

    box-shadow:0 15px 35px rgba(157,127,25,.30);

}

/*==================================================
Mobile Search Tabs
==================================================*/

@media(max-width:767px){

.search-tabs{

    flex-wrap:nowrap;

    overflow-x:auto;

    overflow-y:hidden;

    padding-bottom:8px;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;

}

.search-tabs::-webkit-scrollbar{

    display:none;

}

.search-tabs .nav-link,
.search-tabs .tab-btn{

    flex:0 0 auto;

    white-space:nowrap;

    min-width:120px;

    text-align:center;

    padding:12px 22px;

    font-size:14px;

}

}


/*==================================================
SEARCH FINAL - PART 2C
Premium Form Controls
==================================================*/

/* Labels */

.search-card label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:600;

    color:#222;

    font-family:'Montserrat',sans-serif;

}

/* Input & Select */

.search-card .form-control,
.search-card .form-select{

    height:58px;

    border-radius:16px;

    border:1px solid #E8E8E8;

    background:#fff;

    padding:0 18px;

    font-size:15px;

    font-family:'Montserrat',sans-serif;

    color:#333;

    box-shadow:none;

    transition:all .35s ease;

}

/* Placeholder */

.search-card .form-control::placeholder{

    color:#9A9A9A;

}

/* Hover */

.search-card .form-control:hover,
.search-card .form-select:hover{

    border-color:#C8A93A;

}

/* Focus */

.search-card .form-control:focus,
.search-card .form-select:focus{

    border-color:#9D7F19;

    box-shadow:0 0 0 4px rgba(157,127,25,.12);

    outline:none;

}

/* Select Arrow */

.search-card .form-select{

    cursor:pointer;

}



/*==================================================
Premium Search Button
==================================================*/

.search-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:#9D7F19;

    color:#fff;

    font-size:16px;

    font-weight:600;

    font-family:'Montserrat',sans-serif;

    transition:.35s;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

.search-btn:hover{

    background:#7F6514;

    transform:translateY(-2px);

    box-shadow:0 18px 35px rgba(157,127,25,.28);

}

.search-btn i{

    font-size:15px;

}


/*==================================================
Mobile Form
==================================================*/

@media(max-width:767px){

.search-card label{

    font-size:13px;

}

.search-card .form-control,
.search-card .form-select,
.search-btn{

    height:54px;

    font-size:15px;

}

.search-btn{

    margin-top:5px;

}

}



/*==================================================
SEARCH FINAL - PART 2D
Premium Polish
==================================================*/

/* Glass Effect */

.search-card{

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(157,127,25,.15);

}

/* Input Icon */

.search-input{

    position:relative;

}

.search-input i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#9D7F19;

    font-size:15px;

    pointer-events:none;

}

.search-input .form-control{

    padding-left:48px;

}

/* Premium Select */

.search-card .form-select{

    background-color:#fff;

    background-position:right 18px center;

    background-size:14px;

}

/* Search Button */

.search-btn{

    background:linear-gradient(
        135deg,
        #B9932F 0%,
        #9D7F19 100%
    );

    border:none;

    overflow:hidden;

    position:relative;

}

.search-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.18);

    transform:skewX(-25deg);

    transition:.6s;

}

.search-btn:hover::before{

    left:120%;

}

/* Hover Animation */

.search-card .form-control,
.search-card .form-select,
.search-btn{

    transition:all .35s ease;

}

.search-card .form-control:hover,
.search-card .form-select:hover{

    transform:translateY(-1px);

}


/*==================================================
Mobile Search Polish
==================================================*/

@media (max-width:767px){

.search-card{

    border-radius:20px;

}

.search-tabs{

    margin-bottom:20px;

}

.search-btn{

    width:100%;

}

.search-input i{

    left:16px;

}

.search-input .form-control{

    padding-left:45px;

}

}

/*=========================================
 FEATURED PROPERTY PREMIUM THEME
=========================================*/

/* Section */

.featured-properties{
    background:#F8F7F3;
    padding:100px 0;
}

/* Small Heading */

.section-subtitle{
    font-family:'Montserrat',sans-serif;
    color:#9D7F19;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

/* Main Heading */

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-weight:700;
    color:#16213E;
    line-height:1.1;
    margin:15px 0;
}

/* Paragraph */

.section-text{
    font-family:'Montserrat',sans-serif;
    font-size:17px;
    line-height:30px;
    color:#6B7280;
    max-width:600px;
}

/* View Button */

.view-all-btn{
    background:#9D7F19;
    color:#fff !important;
    padding:16px 34px;
    border-radius:50px;
    font-family:'Montserrat',sans-serif;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.view-all-btn:hover{
    background:#866813;
    color:#fff;
    transform:translateY(-3px);
}


/*====================================
 PROPERTY CARD
====================================*/

.property-card{

    border:none;
    border-radius:20px;
    overflow:hidden;

    background:#fff;

    box-shadow:
    0 20px 60px rgba(0,0,0,.07);

    transition:.35s;

}

.property-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);

}

/* Image */

.property-image{

    height:260px;

    overflow:hidden;

}

.property-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.property-card:hover img{

    transform:scale(1.08);

}

/* Badge */

.property-tag{

    background:#9D7F19;

    color:#fff;

    font-family:'Montserrat',sans-serif;

    font-size:12px;

    padding:9px 18px;

    border-radius:30px;

}

/* Content */

.property-content{

    padding:28px;

}

/* Title */

.property-content h4{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    color:#16213E;

    font-weight:700;

    margin-bottom:10px;

}

/* Location */

.property-content p{

    font-family:'Montserrat',sans-serif;

    color:#7A7A7A;

    font-size:15px;

    margin-bottom:18px;

}

.property-content p i{

    color:#9D7F19;

}

/* Price */

.property-price{

    font-family:'Cormorant Garamond',serif;

    color:#9D7F19;

    font-size:42px;

    font-weight:700;

    margin-bottom:22px;

}

/* Bottom */

.property-info{

    border-top:1px solid #ECE6D8;

    padding-top:18px;

}

.property-info span{

    font-family:'Montserrat',sans-serif;

    color:#666;

    font-size:14px;

}

.property-info i{

    color:#9D7F19;

}

/* Responsive */

@media(max-width:991px){

.section-title{

font-size:42px;

}

.property-content h4{

font-size:30px;

}

.property-price{

font-size:34px;

}

}



/*==========================
Wishlist
==========================*/

.wishlist-btn{

position:absolute;

top:18px;

right:18px;

width:42px;

height:42px;

background:rgba(255,255,255,.90);

backdrop-filter:blur(10px);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

color:#9D7F19;

font-size:18px;

transition:.35s;

z-index:20;

}

.wishlist-btn:hover{

background:#9D7F19;

color:#fff;

transform:scale(1.1);

}

/*==========================
Overlay
==========================*/

.property-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(to top,
rgba(0,0,0,.60),
rgba(0,0,0,.05));

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.35s;

}

.property-card:hover .property-overlay{

opacity:1;

}

/*==========================
View Button
==========================*/

.view-property-btn{

background:#9D7F19;

color:#fff;

padding:15px 34px;

border-radius:50px;

text-decoration:none;

font-family:'Montserrat',sans-serif;

font-weight:600;

transition:.35s;

}

.view-property-btn:hover{

background:#fff;

color:#9D7F19;

}

.property-content h4 a{

text-decoration:none;

color:#16213E;

transition:.35s;

}

.property-content h4 a:hover{

color:#9D7F19;

}


/*=========================================
PART 6C-3
Luxury Premium Card Effects
=========================================*/

/* Gold Border Animation */

.property-card{
    border:1px solid transparent;
    position:relative;
}

.property-card:hover{
    border-color:#9D7F19;
}

/* Image Overlay */

.property-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.08),
        transparent);
    opacity:0;
    transition:.4s;
    z-index:2;
}

.property-card:hover .property-image::before{
    opacity:1;
}

/* Image Zoom */

.property-image img{
    transition:.8s;
}

.property-card:hover .property-image img{
    transform:scale(1.08);
}

/* Floating Badge */

.property-tag{
    box-shadow:0 8px 20px rgba(157,127,25,.30);
}

/* Bottom Icons */

.property-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.property-info span{
    transition:.3s;
}

.property-card:hover .property-info span{
    color:#9D7F19;
}

/* Title */

.property-content h4{

transition:.35s;

}

.property-card:hover h4{

color:#9D7F19;

}

/* Price */

.property-price{

transition:.35s;

}

.property-card:hover .property-price{

transform:translateX(5px);

}

/* Card Shadow */

.property-card{

transition:.45s cubic-bezier(.2,.8,.2,1);

}

.property-card:hover{

box-shadow:
0 40px 90px rgba(0,0,0,.15);

}

/* Wishlist */

.wishlist-btn{

box-shadow:0 8px 25px rgba(0,0,0,.10);

}

/* View Button */

.view-property-btn{

box-shadow:
0 15px 35px rgba(157,127,25,.35);

}

.view-property-btn i{

margin-left:8px;

transition:.3s;

}

.view-property-btn:hover i{

transform:translateX(6px);

}















/*=========================================
PROPERTIES PAGE HERO
=========================================*/

.properties-hero{
    padding:90px 0 70px;
    background:#F8F7F3;
    position:relative;
    overflow:hidden;
}

.properties-hero::before{
    content:'';
    position:absolute;
    right:-120px;
    top:-120px;
    width:380px;
    height:380px;
    background:rgba(157,127,25,.06);
    border-radius:50%;
}

.properties-hero::after{
    content:'';
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:300px;
    height:300px;
    background:rgba(157,127,25,.05);
    border-radius:50%;
}

.hero-label{

    display:inline-block;
    background:#9D7F19;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-family:'Montserrat',sans-serif;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;

}

.properties-hero h1{

    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-weight:700;
    color:#1D1D1D;
    margin-bottom:18px;

}

.properties-hero p{

    font-family:'Montserrat',sans-serif;
    font-size:17px;
    line-height:30px;
    color:#666;
    max-width:650px;

}

.breadcrumb-box{

    margin-top:28px;
    font-family:'Montserrat',sans-serif;
    font-size:15px;

}

.breadcrumb-box a{

    color:#9D7F19;
    text-decoration:none;
    font-weight:600;

}

.breadcrumb-box span{

    margin:0 10px;
    color:#aaa;

}

.breadcrumb-box strong{

    color:#222;

}


/*=========================================
SEARCH CARD
=========================================*/

.property-search-area{

    margin-top:-45px;
    position:relative;
    z-index:99;

}

.search-card{

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(20px);
    border-radius:22px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid rgba(157,127,25,.12);

}

.search-card label{

    font-family:'Montserrat',sans-serif;
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:8px;

}

.search-card .form-control,
.search-card .form-select{

    height:56px;
    border-radius:14px;
    border:1px solid #e5e5e5;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    box-shadow:none;
    transition:.3s;

}

.search-card .form-control:focus,
.search-card .form-select:focus{

    border-color:#9D7F19;
    box-shadow:0 0 0 0.18rem rgba(157,127,25,.15);

}

.btn-search{

    height:56px;
    border:none;
    border-radius:14px;
    background:#9D7F19;
    color:#fff;
    font-weight:600;
    transition:.35s;
    font-family:'Montserrat',sans-serif;

}

.btn-search:hover{

    background:#7b620f;
    color:#fff;
    transform:translateY(-2px);

}


/*=========================================
SECTION GAP
=========================================*/

.property-listing{

    padding-top:90px;
    padding-bottom:80px;

}


/*=========================================
MOBILE
=========================================*/

@media(max-width:991px){

.properties-hero{

padding:70px 0 90px;

}

.properties-hero h1{

font-size:42px;

}

.search-card{

padding:22px;

margin-top:25px;

}

.property-search-area{

margin-top:-30px;

}

}


@media(max-width:767px){

.properties-hero{

padding:55px 0 80px;

text-align:center;

}

.properties-hero h1{

font-size:34px;

line-height:42px;

}

.properties-hero p{

font-size:15px;

line-height:28px;

}

.hero-label{

font-size:12px;

}

.search-card{

padding:18px;

border-radius:18px;

}

.search-card .form-control,
.search-card .form-select,
.btn-search{

height:52px;

}

}


/*=========================================
STICKY SEARCH MOBILE
=========================================*/

@media(max-width:767px){

.property-search-area{

position:sticky;

top:75px;

z-index:999;

}

}


/*=====================================
Mobile Hero Fix
=====================================*/

@media (max-width:991px){

    .hero-section{
        overflow:hidden;
        position:relative;
        z-index:1;
    }

    .hero-slider,
    .hero-image,
    .hero-right,
    .hero-profile,
    .hero-bg{
        position:relative;
        z-index:1;
    }

    .property-search-area{
        position:relative;
        z-index:999;
        margin-top:-60px;
    }

    .search-card{
        position:relative;
        z-index:9999;
        background:#fff;
    }

}

/*==================================================
PREMIUM FILTER SIDEBAR
==================================================*/

.filter-sidebar{
    background:#fff;
    border-radius:20px;
    padding:28px;
    border:1px solid #eee6d5;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    position:sticky;
    top:120px;
    transition:.3s;
}

.filter-sidebar:hover{
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.filter-header{
    margin-bottom:28px;
    padding-bottom:18px;
    border-bottom:1px solid #ececec;
}

.filter-header h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}

.filter-header h3 i{
    color:#9D7F19;
    margin-right:8px;
}

.filter-header p{
    font-family:'Montserrat',sans-serif;
    color:#777;
    font-size:14px;
    line-height:24px;
    margin:0;
}

.filter-group{
    margin-bottom:24px;
}

.filter-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#222;
    font-family:'Montserrat',sans-serif;
}

.filter-group label i{
    color:#9D7F19;
    margin-right:8px;
}

.filter-sidebar .form-control,
.filter-sidebar .form-select{

    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    box-shadow:none;
}

.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus{

    border-color:#9D7F19;
    box-shadow:0 0 0 .2rem rgba(157,127,25,.12);
}

.premium-check{

    display:flex;
    align-items:center;
    margin-bottom:10px;
}

.premium-check label{

    margin-bottom:0;
    margin-left:10px;
    font-size:14px;
    font-family:'Montserrat',sans-serif;
    cursor:pointer;
}

.premium-check input{

    width:18px;
    height:18px;
    accent-color:#9D7F19;
}

.btn-filter{

    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:#9D7F19;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-weight:600;
    transition:.35s;
}

.btn-filter:hover{

    background:#846810;
    color:#fff;
    transform:translateY(-2px);
}

@media(max-width:991px){

.filter-sidebar{

    position:relative;
    top:0;
    margin-bottom:30px;
}

}


.premium-check{

margin-bottom:12px;

}

.check-item{

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

padding:6px 0;

font-family:'Montserrat',sans-serif;

font-size:14px;

}

.check-item div{

display:flex;

align-items:center;

gap:10px;

}

.check-item input{

width:18px;

height:18px;

accent-color:#9D7F19;

}

.check-item span{

color:#333;

font-weight:500;

}

.check-item strong{

font-size:13px;

color:#888;

font-weight:600;

}


/*==========================
Premium Amenities
==========================*/

.amenities-list{
    margin-top:15px;
}

.amenity-item{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    margin-bottom:12px;

    cursor:pointer;

}

.amenity-item input{

    width:18px;

    height:18px;

    margin-right:10px;

    accent-color:#9D7F19;

}

.amenity-item span{

    font-size:15px;

    color:#444;

    font-weight:500;

}



/*==============================
PROPERTY TYPE
==============================*/

.property-type-item{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:14px;

}

.property-type-item label{

display:flex;

align-items:center;

gap:10px;

margin:0;

cursor:pointer;

font-size:15px;

font-weight:500;

color:#444;

}

.property-type-item input{

width:18px;

height:18px;

accent-color:#9D7F19;

margin:0;

}

.property-type-item strong{

font-size:14px;

font-weight:600;

color:#666;

}




/*==================================================
GLOBAL LAYOUT SYSTEM
==================================================*/

:root{
    --container-width:1320px;
    --section-space:90px;
    --mobile-space:50px;
}

/* Global Container */

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{

    width:100%;
    max-width:var(--container-width);
    margin:auto;
    padding-left:15px;
    padding-right:15px;

}

/* Global Section */

section{

    position:relative;
    padding:var(--section-space) 0;

}

/* Images */

img{

    max-width:100%;
    height:auto;
    display:block;

}



/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

:root{

    --section-space:70px;

}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{

    padding-left:20px;
    padding-right:20px;

}

}


/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

:root{

    --section-space:50px;

}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{

    padding-left:15px;
    padding-right:15px;

}

}

/*=========================================
MOBILE SEARCH ACCORDION
=========================================*/

.mobile-search-toggle{
    display:none;
}

@media(max-width:991px){

.mobile-search-toggle{
    display:block;
    margin:20px 15px;
}

.search-toggle-btn{

    width:100%;

    background:#111;

    color:#fff;

    border:none;

    border-radius:15px;

    padding:18px 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:17px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

}

.search-toggle-btn i:first-child{

    color:#C8A44D;

}

.toggle-icon{

    transition:.35s;

}

.search-toggle-btn.active .toggle-icon{

    transform:rotate(180deg);

}

/* Hide Search */

#mobileSearchBox{

    display:none;

}

/* Show Search */

#mobileSearchBox.show{

    display:block;

    animation:slideSearch .35s ease;

}

}

@keyframes slideSearch{

0%{

opacity:0;

transform:translateY(-20px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/* ==========================================
   Mobile Header User Button
========================================== */

@media (max-width: 991.98px) {

    .main-header .navbar > .container {
        display: flex;
        align-items: center;
    }

    .main-header .navbar-brand {
        margin-right: auto;
    }

    .main-header .navbar-toggler {
        margin-left: 10px;
    }

    .main-header .header-user {
        display: block !important;
        margin-left: 10px;
    }

    .main-header .header-user .header-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
    }

    .main-header .header-user .header-btn span {
        display: none;
    }

    .main-header .header-user .header-btn i {
        margin: 0;
        font-size: 16px;
    }

}


/* ==================================================
   PROPERTIES PAGE - COMPACT PROPERTY CARDS
   ================================================== */

.property-listing .property-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    transition: .3s ease;
    height: auto;
}

.property-listing .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.11);
}


/* PROPERTY IMAGE */

.property-listing .property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-listing .property-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


/* STATUS */

.property-listing .property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #9D7F19;
    color: #fff;
    padding: 6px 11px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}


/* CONTENT */

.property-listing .property-content {
    padding: 17px 18px 16px;
}


/* PROPERTY TYPE */

.property-listing .property-category {
    display: inline-block;
    color: #9D7F19;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 5px;
}


/* TITLE */

.property-listing .property-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 7px;
}

.property-listing .property-content h4 a {
    color: #16213E;
}

.property-listing .property-content h4 a:hover {
    color: #9D7F19;
}


/* LOCATION */

.property-listing .property-content p {
    color: #777;
    font-size: 13px;
    margin: 0 0 10px;
}

.property-listing .property-content p i {
    color: #9D7F19;
    margin-right: 5px;
}


/* PRICE */

.property-listing .property-price {
    color: #9D7F19;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* INFO */

.property-listing .property-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 12px;
}

.property-listing .property-info span {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.property-listing .property-info span i {
    color: #2563EB;
    margin-right: 0;
    font-size: 13px;
}


/* DESKTOP */

@media (min-width: 992px) {

    .property-listing .col-lg-4 {
        margin-bottom: 22px !important;
    }

}


/* TABLET */

@media (max-width: 991px) {

    .property-listing .property-image,
    .property-listing .property-image img {
        height: 210px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .property-listing .property-image,
    .property-listing .property-image img {
        height: 210px;
    }

    .property-listing .property-content {
        padding: 16px;
    }

    .property-listing .property-content h4 {
        font-size: 21px;
    }

    .property-listing .property-price {
        font-size: 20px;
    }

}

/* ==================================================
   EXTRA COMPACT PROPERTY CARDS
   ================================================== */

.property-listing .property-image,
.property-listing .property-image img {
    height: 175px;
}

.property-listing .property-content {
    padding: 13px 16px 12px;
}

.property-listing .property-category {
    font-size: 10px;
    margin-bottom: 3px;
}

.property-listing .property-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1.1;
}

.property-listing .property-content p {
    font-size: 12px;
    margin-bottom: 7px;
}

.property-listing .property-price {
    font-size: 19px;
    margin-bottom: 9px;
}

.property-listing .property-info {
    padding-top: 8px;
    font-size: 11px;
}

.property-listing .property-info span i {
    font-size: 12px;
}

.property-listing .property-tag {
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    font-size: 10px;
}

