/* =====================================================
   MALAIKA STAYS
   PREMIUM AIRBNB WEBSITE
   PART 1
===================================================== */

/*=========================
  GOOGLE FONT
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================
  RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fb;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}


/*=========================
  CONTAINER
=========================*/

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}


/*=========================
  TOP BAR
=========================*/

.topbar{

    background:#0D2A57;
    color:#fff;
    font-size:14px;
    padding:12px 0;

}

.topbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

}

.topbar-left,
.topbar-right{

    display:flex;
    align-items:center;
    gap:25px;

}

.topbar i{

    color:#D4AF37;
    margin-right:8px;

}

.topbar a{

    color:#fff;
    font-weight:500;

}

.topbar a:hover{

    color:#D4AF37;

}


/*=========================
  NAVBAR
=========================*/

.navbar{

    position:sticky;
    top:0;
    left:0;
    width:100%;

    background:#ffffff;

    padding:15px 0;

    z-index:1030;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

}

.navbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/*=========================
  LOGO
=========================*/

.navbar-brand{

    display:flex;
    align-items:center;
    gap:15px;

}

.navbar-brand img{

    height:120px;
    width:auto;
    transition:.3s;

}

.navbar-brand img:hover{

    transform:scale(1.05);

}


/*=========================
  NAVIGATION
=========================*/

.navbar-nav{

    display:flex;
    align-items:center;
    gap:35px;

}

.nav-link{

    color:#0D2A57;
    font-size:17px;
    font-weight:600;
    position:relative;

}


.nav-link::after{

    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;

}

.nav-link:hover{

    color:#D4AF37;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link.active{

    color:#D4AF37;

}


/*=========================
  BOOK BUTTON
=========================*/

.btn-book{

    background:#D4AF37;
    color:#0D2A57;
    border-radius:8px;
    padding:15px 28px;
    border-radius:10px;
    font-weight:700;
    display:inline-block;

}

.btn-book:hover{

    background:#fff;
    color:#0D2A57;

}


/*=========================
  HERO SECTION
=========================*/

.hero {
    position: relative;
    min-height: 100vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    transition: background-image 1s ease-in-out;
}

.hero::before{

    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(13,42,87,.45),
    rgba(13,42,87,.10));

}

.hero-content{

    position:relative;
    z-index:2;

}

.hero-subtitle{

    color:#D4AF37;
    font-size:32px;
    font-weight:500;
    margin-bottom:20px;
    letter-spacing:1px;

}

.hero h1{

    font-size:82px;
    color:#fff;
    font-weight:800;
    line-height:1.05;
    margin-bottom:30px;

}

.hero p{

    color:#f4f4f4;
    font-size:22px;
    max-width:650px;
    margin-bottom:45px;

}


/*=========================
  HERO BUTTONS
=========================*/

.hero-buttons{

    display:flex;
    align-items:center;
    gap:25px;

}

.btn-gold{

    background:#D4AF37;
    color:#0D2A57;
    padding:18px 38px;
    border-radius:10px;
    font-size:17px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;

}

.btn-gold:hover{

    background:#fff;
    color:#0D2A57;

}

.watch-video{

    display:flex;
    align-items:center;
    color:#fff;
    font-size:18px;
    font-weight:600;

}

.watch-video span{

    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    color:#0D2A57;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-right:15px;

    transition:.3s;

}

.watch-video:hover{

    color:#D4AF37;

}

.watch-video:hover span{

    background:#D4AF37;
    color:#0D2A57;

}


/*=========================
  RESPONSIVE
=========================*/

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .navbar{
        top:0;
        background:#0D2A57;
        position:relative;
    }

    .navbar-brand img{
        height:90px;
    }

    .navbar-nav{
        gap:18px;
        margin-top:20px;
        flex-direction:column;
    }

    .hero{

        text-align:center;
        padding:170px 0 100px;

    }

    .hero h1{

        font-size:52px;

    }

    .hero-subtitle{

        font-size:24px;

    }

    .hero p{

        font-size:18px;
        margin:auto;
        margin-bottom:35px;

    }

    .hero-buttons{

        flex-direction:column;

    }

}
/* =========================
BOOKING SEARCH BOX
========================= */

.booking-wrapper{
    position:relative;
    margin-top:-70px;
    z-index:50;
}

.booking-box{
    background:#fff;
    border-radius:22px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.booking-item{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1;
    padding:0 20px;
    border-right:1px solid #e5e7eb;
}

.booking-item:last-child{
    border-right:none;
}

.booking-item i{
    font-size:28px;
    color:#D4AF37;
}

.booking-item label{
    display:block;
    font-weight:600;
    color:#0D2A57;
    font-size:14px;
}

.booking-item p{
    margin:4px 0 0;
    color:#777;
    font-size:15px;
}

.booking-button a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#0D2A57;
    color:#fff;
    padding:18px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.booking-button a:hover{
    background:#D4AF37;
    color:#0D2A57;
}


.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.property-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.property-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.property-card:hover .property-image img{
    transform:scale(1.08);
}


.favorite{
    position:absolute;
    top:18px;
    right:18px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}

.favorite:hover{
    background:#D4AF37;
    color:#fff;
}

.property-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.property-category{
    display:inline-block;
    width:max-content;
    background:#f4f4f4;
    color:#555;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.property-content h3{
    font-size:24px;
    color:#0D2A57;
    margin-bottom:12px;
}

.location{
    display:flex;
    align-items:center;
    gap:8px;
    color:#777;
    font-size:15px;
    margin-bottom:20px;
}

.property-info{
    display:flex;
    justify-content:space-between;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:18px 0;
    margin-bottom:20px;
}

.property-info div{
    font-size:15px;
    color:#444;
}

.property-info i{
    color:#D4AF37;
    margin-right:6px;
}

.property-footer{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price strong{
    display:block;
    font-size:26px;
    color:#0D2A57;
}

.price span{
    color:#777;
    font-size:15px;
}

.details-btn{
    background:#ff385c;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.details-btn:hover{
    background:#d72b4a;
    color:#fff;
}
/* =====================================================
   HOW MALAIKABNB WORKS
===================================================== */

.how-it-works {
    padding: 75px 0 80px;
    background: #f8f9fc;
}

/* Section heading */
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 42px;
}

.how-it-works .section-header h2 {
    margin: 0 0 8px;

    color: #102a50;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.how-it-works .section-header p {
    margin: 0;

    color: #7b8491;
    font-size: 14px;
}

/* =====================================================
   STEPS
===================================================== */

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    position: relative;
}

/* Connecting line */
.steps-container::before {
    content: "";

    position: absolute;

    top: 43px;
    left: 16.5%;
    right: 16.5%;

    height: 2px;

    background: #e3c078;

    z-index: 0;
}

/* =====================================================
   STEP CARD
===================================================== */

.step-card {
    position: relative;
    z-index: 1;

    background: #fff;

    border: 1px solid #e9ebef;
    border-radius: 10px;

    padding: 32px 25px 28px;

    text-align: center;

    box-shadow: 0 5px 18px rgba(16, 42, 80, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.step-card:hover {
    transform: translateY(-5px);

    border-color: #d4a72c;

    box-shadow: 0 12px 28px rgba(16, 42, 80, .10);
}

/* =====================================================
   STEP ICON
===================================================== */

.step-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #d4a72c;

    color: #102a50;

    font-size: 25px;

    box-shadow: 0 4px 12px rgba(212, 167, 44, .16);
}

/* =====================================================
   STEP TITLE
===================================================== */

.step-card h3 {
    margin: 0 0 10px;

    color: #102a50;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;
}

/* =====================================================
   STEP DESCRIPTION
===================================================== */

.step-card p {
    margin: 0;

    color: #707988;

    font-size: 12px;
    line-height: 1.7;
}

/* =====================================================
   EXPLORE BUTTON
===================================================== */

.works-button {
    margin-top: 35px;

    text-align: center;
}

.works-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 24px;

    background: #d49a3a;
    color: #fff;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(212, 154, 58, .20);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.works-button a:hover {
    background: #b77c22;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(212, 154, 58, .28);
}

/* Add arrow automatically */
.works-button a::after {
    content: "→";
    font-size: 14px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .steps-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .steps-container::before {
        display: none;
    }

    .step-card {
        padding: 28px 25px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .how-it-works {
        padding: 55px 0 60px;
    }

    .how-it-works .section-header {
        margin-bottom: 30px;
    }

    .how-it-works .section-header h2 {
        font-size: 23px;
    }

    .how-it-works .section-header p {
        font-size: 12px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 12px;
    }

}
/* =====================================================
   STATISTICS
===================================================== */

.statistics {
    padding: 65px 0;
    background: #fff;
}

/* Statistics row */
.statistics .row {
    align-items: stretch;
}

/* =====================================================
   STAT CARD
===================================================== */

.stat-card {
    position: relative;

    height: 100%;

    background: #fff;

    border: 1px solid #e9ebef;
    border-radius: 10px;

    padding: 28px 18px 25px;

    text-align: center;

    box-shadow: 0 4px 15px rgba(16, 42, 80, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.stat-card:hover {
    transform: translateY(-5px);

    border-color: #d4a72c;

    box-shadow: 0 12px 28px rgba(16, 42, 80, .10);
}

/* =====================================================
   ICON
===================================================== */

.stat-card i {
    width: 52px;
    height: 52px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff8e8;

    color: #d49a3a;

    font-size: 22px;
}

/* =====================================================
   NUMBER
===================================================== */

.stat-card h2 {
    margin: 0 0 5px;

    color: #102a50;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.1;
}

/* =====================================================
   TITLE
===================================================== */

.stat-card h5 {
    margin: 0 0 6px;

    color: #102a50;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.stat-card p {
    margin: 0;

    color: #7b8491;

    font-size: 11px;

    line-height: 1.5;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .statistics {
        padding: 55px 0;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card h2 {
        font-size: 29px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .statistics {
        padding: 45px 0;
    }

    .stat-card {
        padding: 24px 18px;
    }

    .stat-card i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .stat-card h2 {
        font-size: 28px;
    }

}
/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#081B3A;
    color:#fff;
    padding:80px 0 30px;
}

footer h4{
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:700;
}

footer p,
footer li,
footer a{
    color:#d7d7d7;
    font-size:15px;
    line-height:1.9;
}

footer a:hover{
    color:#D4AF37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}


/* =====================================================
   LOGO
===================================================== */

.navbar-brand{
    padding:0;
    margin-right:20px;
}

.navbar-brand .logo{
    height:120px;
    width:auto;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

.property-grid{
    grid-template-columns:repeat(2,1fr);
}

.steps-container{
    grid-template-columns:repeat(2,1fr);
}

.hero h1{
    font-size:65px;
}

}


@media(max-width:992px){

.booking-box{
    flex-direction:column;
    align-items:stretch;
}

.booking-item{
    border-right:none;
    border-bottom:1px solid #eee;
    padding:20px 0;
}

.booking-button{
    width:100%;
}

.booking-button a{
    width:100%;
}

.property-grid{
    grid-template-columns:repeat(2,1fr);
}

.steps-container{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero h1{
    font-size:56px;
}

.hero p{
    font-size:18px;
}

.navbar-brand .logo{
    height:95px;
}

}


@media(max-width:768px){

.property-grid{
    grid-template-columns:1fr;
}

.hero{
    min-height:auto;
    padding:140px 0 80px;
}

.hero h1{
    font-size:42px;
}

.hero-subtitle{
    font-size:22px;
}

.hero-buttons{
    flex-direction:column;
    gap:20px;
}

.section-header h2{
    font-size:34px;
}

.stat-card{
    margin-bottom:25px;
}

}


@media(max-width:576px){

.container{
    padding-left:18px;
    padding-right:18px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:16px;
}

.btn-gold,
.btn-book{
    width:100%;
    justify-content:center;
}

.watch-video{
    justify-content:center;
}

.navbar-brand .logo{
    height:80px;
}

}
#bookingPanel{

position:fixed;

top:0;

right:-450px;

width:430px;

height:100vh;

background:#fff;

z-index:2000;

transition:.4s;

overflow:auto;

box-shadow:-10px 0 35px rgba(0,0,0,.25);

}

#bookingPanel.active{

right:0;

}

.booking-content{

padding:35px;

}

.booking-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

#closeBooking{

border:none;

background:none;

font-size:34px;

cursor:pointer;

}

#closeBooking:hover{

color:red;

}
.modal{
    z-index:2000 !important;
}

.modal-backdrop{
    z-index:1999 !important;
}
.payment-option{

cursor:pointer;
transition:.3s;
border:2px solid transparent;
border-radius:15px;

}

.payment-option:hover{

transform:translateY(-5px);
border-color:#f5b301;
box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.payment-option.active{

border:2px solid #f5b301;
background:#fffdf3;

}
@media (max-width:991px){

    .navbar-collapse{
        background:#0D2A57;
        padding:20px;
    }

    .navbar-nav{
        display:flex !important;
        flex-direction:column;
    }

    .nav-link{
       
        display:block;
        padding:12px 0;
    }

    .nav-link.active{
        color:#D4AF37 !important;
    }

}
.navbar-collapse{
    background:#f9f9f9 !important;
}


/*==================================
OUR STORY
==================================*/

.about-story{

background:#fff;

padding:100px 0;

}

.story-image img{

width:100%;

height:550px;

object-fit:cover;

transition:.4s;

}

.story-image img:hover{

transform:scale(1.03);

}

.section-tag{

display:inline-block;

padding:8px 18px;

background:#FFF3CD;

color:#C28A00;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.section-title{

font-size:48px;

font-weight:700;

color:#222;

margin-bottom:25px;

line-height:1.3;

}

.section-text{

font-size:18px;

line-height:34px;

color:#666;

margin-bottom:20px;

}

.feature-box{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

font-size:17px;

}

.feature-box i{

color:#D4AF37;

font-size:20px;

}

@media(max-width:768px){

.section-title{

font-size:34px;

}

.story-image img{

height:350px;

}

}
/*=================================
WHY CHOOSE US
=================================*/

.why-choose{

padding:100px 0;

background:#f8f9fa;

}

.choose-card{

background:#fff;

padding:45px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.choose-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.choose-icon{

width:90px;

height:90px;

background:#FFD54F;

border-radius:50%;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.choose-icon i{

font-size:38px;

color:#222;

}

.choose-card h4{

font-weight:700;

margin-bottom:15px;

}

.choose-card p{

color:#666;

line-height:30px;

font-size:16px;

}
/*==================================
MISSION & VISION
==================================*/

.mission-vision{

padding:100px 0;

background:#fff;

}

.mission-card,
.vision-card{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

height:100%;

transition:.4s;

border-top:5px solid #D4AF37;

}

.mission-card:hover,
.vision-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.icon-box{

width:90px;

height:90px;

background:#D4AF37;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.icon-box i{

font-size:38px;

color:#fff;

}

.mission-card h3,
.vision-card h3{

font-size:32px;

font-weight:700;

margin-bottom:20px;

color:#222;

}

.mission-card p,
.vision-card p{

font-size:17px;

line-height:32px;

color:#666;

margin-bottom:25px;

}

.mission-list{

list-style:none;

padding:0;

margin:0;

}

.mission-list li{

margin-bottom:18px;

font-size:17px;

font-weight:600;

display:flex;

align-items:center;

}

.mission-list i{

color:#D4AF37;

margin-right:12px;

font-size:18px;

}
/*=====================================
STATISTICS
======================================*/

.statistics-section{

padding:100px 0;

background:#f8f9fa;

}

.stat-box{

background:#fff;

padding:45px 30px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.stat-box:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.stat-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#D4AF37;

display:flex;

align-items:center;

justify-content:center;

}

.stat-icon i{

font-size:38px;

color:#fff;

}

.stat-box h2{

font-size:48px;

font-weight:700;

color:#222;

margin-bottom:10px;

}

.stat-box h5{

font-weight:700;

margin-bottom:15px;

}

.stat-box p{

color:#777;

line-height:28px;

}
/* ===========================
FOOTER
=========================== */

.footer{
    background:#111827;
    color:#ddd;
    padding:70px 0 20px;
}

.footer h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#bbb;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#d4af37;
    padding-left:5px;
}

.footer hr{
    border-color:rgba(255,255,255,.1);
    margin:40px 0 20px;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    display:inline-flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    background:#1f2937;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-4px);
}

/*==========================================
PROPERTIES PAGE
==========================================*/

.page-banner{

    background:linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url('../images/banner.jpg') center center/cover;

    padding:120px 0;

    color:#fff;

    text-align:center;

}

.page-banner h1{

    font-size:50px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner p{

    font-size:18px;

    opacity:.9;

}



/*==============================
PROPERTY CARD
===============================*/

.property-card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    background:#fff;

}

.property-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.property-card img{

    transition:.5s;

}

.property-card:hover img{

    transform:scale(1.08);

}



/*==============================
BADGE
===============================*/

.property-card .badge{

    font-size:13px;

    padding:8px 15px;

    border-radius:30px;

}



/*==============================
TITLE
===============================*/

.property-card h4{

    font-weight:700;

    color:#222;

    margin-bottom:10px;

}



/*==============================
LOCATION
===============================*/

.property-card p{

    font-size:15px;

}



/*==============================
INFO
===============================*/

.property-card .row .col{

    font-size:14px;

    color:#666;

}

.property-card .row i{

    color:#d4af37;

    font-size:22px;

    margin-bottom:8px;

}



/*==============================
PRICE
===============================*/

.property-card h4.text-primary{

    color:#d4af37 !important;

    font-weight:700;

}



/*==============================
BUTTON
===============================*/

.property-card .btn{

    border-radius:30px;

    padding:10px 24px;

    font-weight:600;

    transition:.3s;

}

.property-card .btn:hover{

    transform:translateY(-3px);

}



/*==============================
SEARCH CARD
===============================*/

.bg-light{

    background:#f8f9fb !important;

}

.card.shadow{

    border-radius:20px;

}



/*==============================
INPUTS
===============================*/

.form-control,

.form-select{

    border-radius:12px;

    height:55px;

    border:1px solid #ddd;

}

.form-control:focus,

.form-select:focus{

    border-color:#d4af37;

    box-shadow:0 0 10px rgba(212,175,55,.25);

}



/*==============================
SEARCH BUTTON
===============================*/

.btn-primary{

    background:#0d6efd;

    border:none;

    border-radius:12px;

}

.btn-primary:hover{

    background:#0b5ed7;

}
.property-card{

transition:.35s;
border-radius:18px;

}

.property-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 40px rgba(0,0,0,.18)!important;

}

.property-card img{

transition:.5s;

}

.property-card:hover img{

transform:scale(1.08);

}

.property-card .btn{

border-radius:50px;

}

.property-card .badge{

font-size:13px;

letter-spacing:.5px;

}

.property-card .card-footer{

padding:20px;

}

/* ===========================
FLOATING WHATSAPP BUTTON
=========================== */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 99999;
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background: #1EBE5D;
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp-float{
        width:58px;
        height:58px;
        font-size:30px;
        right:20px;
        bottom:20px;
    }
}
/*====================================
PREMIUM BOOKING SEARCH
====================================*/

.booking-wrapper{

    margin-top:-85px;
    position:relative;
    z-index:999;

}

.booking-box{

    background:#fff;

    border-radius:22px;

    padding:18px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

}

.booking-item{

    display:flex;

    align-items:center;

    flex:1;

    padding:12px 18px;

    transition:.3s;

    border-radius:15px;

}

.booking-item:hover{

    background:#f8f9fc;

}

.booking-divider{

    width:1px;

    height:70px;

    background:#ececec;

}

.booking-icon{

    width:55px;

    height:55px;

    background:#FFF8E7;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-right:18px;

    flex-shrink:0;

}

.booking-icon i{

    color:#D4AF37;

    font-size:22px;

}

.booking-input{

    width:100%;

}

.booking-input label{

    display:block;

    font-size:13px;

    color:#999;

    margin-bottom:6px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.booking-input input,

.booking-input select{

    border:none;

    background:transparent;

    width:100%;

    padding:0;

    font-size:16px;

    font-weight:600;

    color:#0D2A57;

    box-shadow:none !important;

}

.booking-input input:focus,

.booking-input select:focus{

    outline:none;

    border:none;

}

.booking-button{

    background:#D4AF37;

    color:#0D2A57;

    border:none;

    width:180px;

    height:70px;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:.35s;

    cursor:pointer;

}

.booking-button:hover{

    background:#0D2A57;

    color:#fff;

    transform:translateY(-4px);

}

.booking-button i{

    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

.booking-box{

    flex-direction:column;

    padding:25px;

}

.booking-divider{

    display:none;

}

.booking-item{

    width:100%;

    margin-bottom:15px;

    border:1px solid #eee;

}

.booking-button{

    width:100%;

    height:60px;

}

}

.contact-hero{
    position:relative;
    min-height:400px;
     background:url("../images/hero.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.contact-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.contact-hero .container{
    position:relative;
    z-index:2;
}

.contact-hero h1{
    font-size:60px;
    font-weight:700;
}

.contact-hero p{
    font-size:22px;
    opacity:.95;
}

.properties-hero{
    position:relative;
    min-height:420px;
         background:url("../images/hero.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.properties-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.properties-hero .container{
    position:relative;
    z-index:2;
}

.properties-hero h1{
    font-size:60px;
    font-weight:700;
}

.properties-hero p{
    font-size:22px;
}

/* ===========================
   MALAIKABNB AI CHAT
=========================== */

.ai-chat-float {
    position: fixed;
    right: 25px;
    bottom: 95px;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #111827;
    color: #ffffff;

    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,0.25);

    z-index: 9998;

    transition: 0.3s;
}

.ai-chat-float:hover {
    transform: scale(1.08);
}


/* CHAT WINDOW */

.ai-chat-window {
    position: fixed;

    right: 25px;
    bottom: 165px;

    width: 360px;
    height: 500px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);

    overflow: hidden;

    display: none;

    flex-direction: column;

    z-index: 9999;
}


/* HEADER */

.ai-chat-header {

    background: #25d366;

    color: #ffffff;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.ai-chat-header strong {

    display: block;

    font-size: 15px;

}

.ai-chat-header small {

    display: block;

    margin-top: 3px;

    font-size: 11px;

    opacity: 0.75;

}

.ai-chat-header button {

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 25px;

    cursor: pointer;

}


/* MESSAGES */

.ai-chat-messages {

    flex: 1;

    padding: 15px;

    overflow-y: auto;

    background: #f5f7fa;

}

.ai-message {

    max-width: 82%;

    padding: 10px 13px;

    margin-bottom: 10px;

    border-radius: 12px;

    font-size: 13px;

    line-height: 1.5;

}

.ai-bot {

    background: #e5e7eb;

    color: #111827;

    margin-right: auto;

}

.ai-user {

    background: #111827;

    color: #ffffff;

    margin-left: auto;

}


/* INPUT */

.ai-chat-input {

    display: flex;

    padding: 10px;

    border-top: 1px solid #ddd;

    background: #ffffff;

}

.ai-chat-input input {

    flex: 1;

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 11px;

    outline: none;

    font-size: 13px;

}

.ai-chat-input button {

    width: 45px;

    margin-left: 7px;

    border: none;

    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    cursor: pointer;

}


/* TYPING */

.ai-typing {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 11px;

    color: #777;

    margin-bottom: 10px;

}

.ai-typing-dots {

    display: flex;

    gap: 3px;

}

.ai-typing-dots i {

    width: 5px;

    height: 5px;

    background: #777;

    border-radius: 50%;

    animation: aiTyping 1.4s infinite;

}

.ai-typing-dots i:nth-child(2) {

    animation-delay: .2s;

}

.ai-typing-dots i:nth-child(3) {

    animation-delay: .4s;

}

@keyframes aiTyping {

    0%, 60%, 100% {

        opacity: .3;

        transform: translateY(0);

    }

    30% {

        opacity: 1;

        transform: translateY(-4px);

    }

}


/* MOBILE */

@media (max-width: 576px) {

    .ai-chat-window {

        right: 10px;

        left: 10px;

        bottom: 145px;

        width: auto;

        height: 70vh;

    }

    .ai-chat-float {

        right: 18px;

        bottom: 90px;

    }

}


/* =========================================================
   PAGE 26
========================================================= */

.listings-page{

    background:#eef7fc;

    min-height:70vh;

    padding:45px 0 90px;

}


/* =========================================================
   MAIN WHITE CONTAINER
========================================================= */

.listings-page > .container{
    background:#fff;
    border-radius:24px;
    padding:35px 35px 40px;
    box-shadow:
        0 15px 45px
        rgba(16,42,80,.08);

    border:1px solid #e1e8ee;
}


/* =========================================================
   HEADER
========================================================= */

.listings-header{
    background:#fff;
    margin-bottom:28px;
}

/* =========================================================
   FILTERS
========================================================= */

.listing-filter-box{
    background:#fff;
}


/* =========================================================
   RESULT HEADER
========================================================= */

.listing-results{
    background:#fff;
}



.listings-header-left{

    max-width:800px;

}


.listings-label{

    color:#d4a72c;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}


.listings-title{

    color:#071d49;

    font-size:42px;

    line-height:1.15;

    font-weight:800;

    margin:0 0 10px;

}


.listings-subtitle{

    color:#64748b;

    font-size:15px;

    line-height:1.7;

    margin:0;

}


.view-all-btn{

    flex-shrink:0;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:48px;

    padding:0 20px;

    border:1px solid #102a50;

    border-radius:30px;

    background:#fff;

    color:#102a50;

    text-decoration:none;

    font-size:14px;

    font-weight:800;

    transition:.25s;

}


.view-all-btn:hover{

    background:#102a50;

    color:#fff;

}


/* =========================================================
   FILTERS
========================================================= */

.listing-filter-box{

    background:#fff;

    border:1px solid #c9e4f3;

    border-radius:18px;

    padding:15px;

    margin-bottom:25px;

    box-shadow:
        0 8px 25px
        rgba(16,42,80,.06);

}


.listing-search-wrapper{

    position:relative;

}


.listing-search-wrapper i{

    position:absolute;

    left:18px;

    top:50%;

    transform:
        translateY(-50%);

    color:#64748b;

    z-index:2;

}


.listing-search{

    width:100%;

    height:54px;

    border:1px solid #d9e3ea;

    border-radius:12px;

    padding:
        0 18px 0 48px;

    outline:none;

    color:#102a50;

    background:#fff;

    font-size:14px;

}


.listing-search:focus{

    border-color:#8ccbe8;

    box-shadow:
        0 0 0 4px
        rgba(140,203,232,.15);

}


.listing-filter{

    width:100%;

    height:54px;

    border:1px solid #d9e3ea;

    border-radius:12px;

    padding:0 15px;

    color:#102a50;

    background:#fff;

    outline:none;

    font-size:14px;

    font-weight:600;

}


/* =========================================================
   RESULTS
========================================================= */

.listing-results{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}


.listing-results-count{

    color:#102a50;

    font-size:14px;

    font-weight:700;

}


.listing-results-count strong{

    font-size:23px;

    margin-right:4px;

}


.listing-results-sort{

    color:#64748b;

    font-size:13px;

}


/* =========================================================
   SINGLE VIEWER
========================================================= */

.property-viewer{

    background:#fff;

    border:1px solid #dde5eb;

    border-radius:22px;

    overflow:hidden;

    box-shadow:
        0 15px 40px
        rgba(16,42,80,.09);

}


.property-viewer-top{

    display:grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(380px, 1fr);

}


/* =========================================================
   GALLERY
========================================================= */

.property-gallery{

    background:#e9eef2;

}


.property-main-image{

    position:relative;

    height:500px;

    overflow:hidden;

    background:#e9eef2;

}


.property-main-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:
        opacity .25s ease,
        transform .35s ease;

}


.property-main-image img:hover{

    transform:scale(1.015);

}


/* IMAGE COUNTER */

.property-image-counter{

    position:absolute;

    top:18px;

    left:18px;

    z-index:10;

    background:
        rgba(0,0,0,.62);

    color:#fff;

    padding:8px 11px;

    border-radius:8px;

    font-size:12px;

    font-weight:800;

}


/* =========================================================
   PROPERTY NAVIGATION ARROWS
========================================================= */

.property-nav{

    position:absolute;

    top:50%;

    transform:
        translateY(-50%);

    width:46px;

    height:46px;

    border:0;

    border-radius:50%;

    background:#fff;

    color:#102a50;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:15;

    box-shadow:
        0 5px 18px
        rgba(0,0,0,.18);

    cursor:pointer;

    transition:.25s;

}


.property-nav:hover{

    background:#102a50;

    color:#fff;

}


.property-prev{

    left:18px;

}


.property-next{

    right:18px;

}


/* =========================================================
   THUMBNAILS
========================================================= */

.property-thumbnails{

    display:flex;

    gap:6px;

    padding:8px;

    background:#fff;

    overflow-x:auto;

    scrollbar-width:thin;

}


.property-thumb{

    flex:
        0 0 92px;

    height:70px;

    padding:0;

    border:2px solid transparent;

    border-radius:7px;

    overflow:hidden;

    background:#eee;

    cursor:pointer;

}


.property-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}


.property-thumb.active{

    border-color:#102a50;

}


/* =========================================================
   DETAILS
========================================================= */

.property-details{

    padding:30px;

    display:flex;

    flex-direction:column;

    background:#fff;

    border-left:
        1px solid #edf0f3;

}


.property-type{

    display:inline-flex;

    align-items:center;

    gap:7px;

    align-self:flex-start;

    padding:8px 12px;

    margin-bottom:15px;

    background:#f0f6fa;

    color:#102a50;

    border-radius:20px;

    font-size:11px;

    font-weight:800;

}


.property-detail-title{

    color:#102a50;

    font-size:30px;

    line-height:1.18;

    font-weight:800;

    margin:0 0 10px;

}



.featured-badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    vertical-align:middle;
    margin-left:5px;
    background:#e9a82b;
    color:#fff;
    padding:6px 9px;
    border-radius:7px;
    font-size:10px;
    font-weight:800;
}


.property-location{

    display:flex;

    align-items:flex-start;

    gap:7px;

    color:#687386;

    font-size:13px;

    line-height:1.6;

    margin-bottom:20px;

}


.property-location i{

    color:#102a50;

    margin-top:3px;

}


/* =========================================================
   SALE PRICE
========================================================= */

.property-sale-price{

    border:1px solid #e1e7ec;

    border-radius:14px;

    padding:17px;

    background:#fafcfd;

    margin-bottom:18px;

}


.property-sale-label{

    color:#7b8595;

    font-size:10px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:4px;

}


.property-sale-value{

    color:#102a50;

    font-size:27px;

    font-weight:800;

}


/* =========================================================
   FEATURES
========================================================= */

.property-features{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    border:1px solid #e1e7ec;

    border-radius:12px;

    overflow:hidden;

    margin-bottom:17px;

}


.property-feature{

    padding:14px 8px;

    text-align:center;

    border-right:
        1px solid #e1e7ec;

}


.property-feature:last-child{

    border-right:0;

}


.property-feature i{

    display:block;

    color:#102a50;

    font-size:17px;

    margin-bottom:5px;

}


.property-feature strong{

    display:block;

    color:#102a50;

    font-size:14px;

    font-weight:800;

}


.property-feature span{

    display:block;

    color:#7b8595;

    font-size:10px;

    margin-top:2px;

}


/* =========================================================
   PROPERTY SIZES
========================================================= */

.property-sizes{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:10px;

    margin-bottom:17px;

}


.property-size{

    display:flex;

    align-items:center;

    gap:9px;

    border:1px solid #e1e7ec;

    border-radius:11px;

    padding:11px;

}


.property-size i{

    color:#102a50;

    font-size:17px;

}


.property-size-label{

    display:block;

    color:#7b8595;

    font-size:9px;

    text-transform:uppercase;

    font-weight:800;

}


.property-size-value{

    display:block;

    color:#102a50;

    font-size:13px;

    font-weight:800;

    margin-top:2px;

}


/* =========================================================
   STATUS
========================================================= */

.property-status{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 12px;

    border-radius:9px;

    background:#f4f7fa;

    color:#102a50;

    font-size:12px;

    font-weight:800;

    margin-bottom:17px;

}


.property-status-dot{

    width:9px;

    height:9px;

    border-radius:50%;

    background:#1ca565;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.property-description{

    color:#687386;

    font-size:13px;

    line-height:1.7;

    margin-bottom:20px;

    display:-webkit-box;

    -webkit-line-clamp:7;

    -webkit-box-orient:vertical;

    overflow:hidden;

}


/* =========================================================
   VIEW BUTTON
========================================================= */

.property-view-button{

    width:100%;

    min-height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:10px;

    background:#102a50;

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:800;

    margin-top:auto;

    transition:.25s;

}


.property-view-button:hover{

    background:#d4a72c;

    color:#102a50;

}


/* =========================================================
   PROPERTY NAVIGATION FOOTER
========================================================= */

.property-viewer-footer{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    padding:15px;

    background:#fafcfd;

    border-top:1px solid #e7edf1;

}


.property-navigation-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    min-width:120px;

    height:40px;

    padding:0 15px;

    border:1px solid #d8e0e6;

    border-radius:8px;

    background:#fff;

    color:#102a50;

    font-size:12px;

    font-weight:800;

    cursor:pointer;

}


.property-navigation-button:hover{

    background:#102a50;

    color:#fff;

}


.property-position{

    color:#687386;

    font-size:12px;

    font-weight:700;

}


/* =========================================================
   EMPTY
========================================================= */

.listings-empty{

    background:#fff;

    padding:70px 25px;

    border-radius:20px;

    text-align:center;

    border:1px solid #e1e8ed;

}


.listings-empty i{

    color:#9bb5c5;

    font-size:48px;

    margin-bottom:18px;

}


.listings-empty h3{

    color:#102a50;

    font-size:24px;

    font-weight:800;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .listings-header{

        align-items:flex-start;

        flex-direction:column;

    }


    .property-viewer-top{

        grid-template-columns:1fr;

    }


    .property-details{

        border-left:0;

        border-top:
            1px solid #edf0f3;

    }


    .property-main-image{

        height:430px;

    }

}


@media(max-width:767px){

    .listings-page{

        padding:30px 0 60px;

    }


    .listings-title{

        font-size:31px;

    }


    .listings-subtitle{

        font-size:14px;

    }


    .listing-results{

        align-items:flex-start;

        flex-direction:column;

        gap:5px;

    }


    .property-main-image{

        height:300px;

    }


    .property-details{

        padding:20px;

    }


    .property-detail-title{

        font-size:25px;

    }


    .property-sale-value{

        font-size:23px;

    }


    .property-features{

        grid-template-columns:
            repeat(3,1fr);

    }


    .property-sizes{

        grid-template-columns:1fr;

    }


    .property-thumb{

        flex-basis:78px;

        height:58px;

    }


    .property-viewer-footer{

        gap:8px;

    }


    .property-navigation-button{

        min-width:95px;

        font-size:11px;

    }

}


@media(max-width:480px){

    .property-main-image{

        height:250px;

    }


    .property-nav{

        width:40px;

        height:40px;

    }


    .property-prev{

        left:10px;

    }


    .property-next{

        right:10px;

    }

}

/* =========================================================
   ABOUT PROPERTY
========================================================= */

.property-about{
    margin-top:18px;
    border-top:1px solid #e5e9ee;
    padding-top:16px;
}


/* TITLE */

.property-about-title{
    display:flex;
    align-items:center;
    gap:8px;

    color:#102a50;

    font-size:14px;

    font-weight:800;

    margin-bottom:9px;
}


.property-about-title i{
    color:#102a50;
    font-size:14px;
}


/* DESCRIPTION */

.property-description{

    color:#687386;

    font-size:13px;

    line-height:1.65;

    max-height:145px;

    overflow-y:auto;

    padding-right:8px;

    white-space:pre-line;

}


/* CUSTOM SCROLLBAR */

.property-description::-webkit-scrollbar{

    width:5px;

}

.property-description::-webkit-scrollbar-track{

    background:#f1f3f5;

    border-radius:10px;

}

.property-description::-webkit-scrollbar-thumb{

    background:#c4ccd5;

    border-radius:10px;

}

.property-description::-webkit-scrollbar-thumb:hover{

    background:#102a50;

}


/* =========================================================
   KEEP RIGHT PANEL CONTROLLED
========================================================= */

.property-details{

    padding:30px;

    display:flex;

    flex-direction:column;

    background:#fff;

    border-left:1px solid #edf0f3;

    min-height:500px;

}


/* =========================================================
   VIEW BUTTON
========================================================= */

.property-view-button{

    width:100%;

    min-height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:10px;

    background:#102a50;

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:800;

    margin-top:18px;

    transition:.25s;

    flex-shrink:0;

}


.property-view-button:hover{

    background:#d4a72c;

    color:#102a50;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .property-details{

        min-height:auto;

    }

}


@media(max-width:767px){

    .property-description{

        max-height:180px;

    }

}


/* =========================================================
   ABOUT PROPERTY CARD
========================================================= */

.property-about-card{
    background:#fff;
    margin-top:22px;
    border:1px solid #dfe6eb;
    border-radius:20px;
    box-shadow:none;
}

.property-about-header{

    display:flex;

    align-items:center;

    gap:13px;

    margin-bottom:18px;

}


.property-about-icon{

    width:44px;

    height:44px;

    border-radius:11px;

    background:#f1f5f8;

    color:#102a50;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:17px;

}


.property-about-label{

    color:#d4a72c;

    font-size:10px;

    font-weight:800;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:3px;

}


.property-about-header h3{

    margin:0;

    color:#102a50;

    font-size:21px;

    font-weight:800;

}


.property-description{

    color:#596579;

    font-size:14px;

    line-height:1.85;

    white-space:pre-line;

    max-width:100%;

}


/* =========================================================
   MOBILE ABOUT CARD
========================================================= */

@media(max-width:767px){

    .property-about-card{

        margin-top:18px;

        padding:22px 20px 25px;

        border-radius:18px;

    }


    .property-about-header h3{

        font-size:18px;

    }


    .property-description{

        font-size:13px;

        line-height:1.75;

    }

}

/* =========================================================
   PUBLIC STATUS BADGE - TOP RIGHT OF PROPERTY IMAGE
========================================================= */

.property-image-status{
    position:absolute;
    top:18px;
    right:18px;
    z-index:30;

    display:inline-flex;
    align-items:center;
    gap:7px;

    padding:10px 16px;

    border-radius:8px;

    color:#fff;

    font-size:12px;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:.5px;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,.22);
}


/* JUST LISTED */

.status-just-listed{
    background:#c91f32;
}


/* FOR SALE */

.status-for-sale{
    background:#102a50;
}


/* UNDER OFFER */

.status-under-offer{
    background:#d49a22;
}


/* SOLD */

.status-sold{
    background:#555;
}


/* WITHDRAWN */

.status-withdrawn{
    background:#777;
}


/* STATUS DOT */

.property-image-status-dot{
    width:7px;
    height:7px;

    border-radius:50%;

    background:#fff;

    flex-shrink:0;
}


/* MOBILE */

@media(max-width:767px){

    .property-image-status{

        top:12px;
        right:12px;

        padding:8px 12px;

        font-size:10px;

    }

}
/* =========================================================
   LIGHTBOX
========================================================= */
.listing-lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(4,12,26,.95);
    z-index:99999;
}

.listing-lightbox.show{display:flex;}

.lightbox-inner{
    position:relative;
    width:100%;
    max-width:1200px;
    height:100%;
    max-height:92vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lightbox-image{
    max-width:90%;
    max-height:84vh;
    object-fit:contain;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.lightbox-control{
    position:absolute;
    width:50px;
    height:50px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#102a50;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
    box-shadow:0 6px 20px rgba(0,0,0,.2);
}

.lightbox-control:hover{background:#102a50;color:#fff;}
.lightbox-close{top:5px;right:5px;}
.lightbox-prev{left:5px;top:50%;transform:translateY(-50%);}
.lightbox-next{right:5px;top:50%;transform:translateY(-50%);}

.lightbox-counter{
    position:absolute;
    left:50%;
    bottom:8px;
    transform:translateX(-50%);
    background:rgba(0,0,0,.68);
    color:#fff;
    padding:7px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

/* =========================================================
   EMPTY
========================================================= */
.listings-empty{
    background:#fff;
    padding:70px 25px;
    border-radius:20px;
    text-align:center;
    border:1px solid #e1e8ed;
}

.listings-empty i{color:#9bb5c5;font-size:48px;margin-bottom:18px;}
.listings-empty h3{color:#102a50;font-size:24px;font-weight:800;}
.listings-empty p{color:#687386;}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:991px){
    .listings-header{align-items:flex-start;flex-direction:column;}
    .property-viewer-top{grid-template-columns:1fr;}
    .property-details{border-left:0;border-top:1px solid #edf0f3;min-height:auto;}
    .property-main-image{height:430px;}
}

@media(max-width:767px){
    .listings-page{padding:30px 0 60px;}
    .listings-title{font-size:31px;}
    .listings-subtitle{font-size:14px;}
    .listing-results{align-items:flex-start;flex-direction:column;gap:5px;}
    .property-main-image{height:300px;}
    .property-details{padding:20px;}
    .property-detail-title{font-size:25px;}
    .property-sale-value{font-size:23px;}
    .property-thumb{flex-basis:78px;height:58px;}
    .property-viewer-footer{gap:8px;}
    .property-navigation-button{min-width:95px;font-size:11px;}
    .property-about-card{margin-top:18px;padding:22px 20px 25px;border-radius:18px;}
    .property-about-header h3{font-size:18px;}
    .property-description{font-size:13px;line-height:1.75;}
    .property-image-status{top:14px;min-height:38px;padding:0 14px 0 12px;font-size:12px;}
}

@media(max-width:480px){
    .property-main-image{height:250px;}
    .property-nav{width:40px;height:40px;}
    .property-prev{left:10px;}
    .property-next{right:10px;}
    .property-image-counter{top:12px;left:12px;}
    .property-image-status{top:12px;}
    .lightbox-control{width:42px;height:42px;}
}

/* =========================================================
   PROPERTY INQUIRY MODAL
========================================================= */

.property-inquiry-modal{
    position:fixed;
    inset:0;
    z-index:99998;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.property-inquiry-modal.show{
    display:flex;
}

.property-inquiry-overlay{
    position:absolute;
    inset:0;
    background:rgba(4,12,26,.72);
    backdrop-filter:blur(4px);
}

.property-inquiry-dialog{
    position:relative;
    z-index:2;
    width:100%;
    max-width:560px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.property-inquiry-close{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:#f1f5f8;
    color:#102a50;
    cursor:pointer;
    font-size:16px;
}

.property-inquiry-header{
    display:flex;
    align-items:center;
    gap:14px;
    padding-right:40px;
    margin-bottom:25px;
}

.property-inquiry-icon{
    width:48px;
    height:48px;
    flex-shrink:0;
    border-radius:12px;
    background:#102a50;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.property-inquiry-label{
    color:#d4a72c;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:3px;
}

.property-inquiry-header h3{
    margin:0;
    color:#102a50;
    font-size:24px;
    font-weight:800;
}

.property-inquiry-header p{
    margin:4px 0 0;
    color:#687386;
    font-size:13px;
}

.property-inquiry-dialog .form-label{
    color:#102a50;
    font-size:13px;
    font-weight:700;
}

.property-inquiry-dialog .form-control{
    min-height:48px;
    border:1px solid #dce4ea;
    border-radius:10px;
    padding:11px 13px;
}

.property-inquiry-dialog textarea.form-control{
    min-height:120px;
    resize:vertical;
}

.property-inquiry-dialog .form-control:focus{
    border-color:#8ccbe8;
    box-shadow:0 0 0 4px rgba(140,203,232,.15);
}

.inquiry-selected-property{
    background:#f4f7fa;
    border:1px solid #e1e7ec;
    border-radius:12px;
    padding:14px;
    margin-bottom:18px;
}

.inquiry-selected-label{
    color:#d4a72c;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.3px;
    margin-bottom:4px;
}

.inquiry-selected-property strong{
    display:block;
    color:#102a50;
    font-size:15px;
}

.inquiry-selected-property span{
    display:block;
    color:#687386;
    font-size:12px;
    margin-top:3px;
}

.property-inquiry-submit{
    width:100%;
    min-height:50px;
    border:0;
    border-radius:10px;
    background:#102a50;
    color:#fff;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}

.property-inquiry-submit:hover{
    background:#d4a72c;
    color:#102a50;
}

@media(max-width:767px){

    .property-inquiry-dialog{
        padding:22px 18px;
        border-radius:18px;
    }

    .property-inquiry-header h3{
        font-size:21px;
    }

}

/* =====================================================
   FOOTER CTA SECTION
===================================================== */

.footer-cta {
    position: relative;
    min-height: 245px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 18, 34, 0.96) 0%,
            rgba(3, 18, 34, 0.88) 45%,
            rgba(3, 18, 34, 0.72) 100%
        ),
        url("../images/hr.png");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* Dark overlay */

.footer-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 34, 0.90),
            rgba(3, 18, 34, 0.60)
        );

    pointer-events: none;
}


/* CTA content */

.footer-cta-content {
    position: relative;
    z-index: 2;

    padding-top: 42px;
    padding-bottom: 42px;
}


/* Small heading */

.footer-cta-small {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #f2b84b;
}


/* Main heading */

.footer-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* Description */

.footer-cta p {
    margin: 12px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.footer-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 145px;

    padding: 13px 20px;

    margin-left: 10px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}


/* Primary button */

.footer-btn-primary {
    color: #ffffff;

    background: #e8a93a;

    border: 1px solid #e8a93a;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}


.footer-btn-primary:hover {
    color: #ffffff;

    background: #d89525;

    border-color: #d89525;

    transform: translateY(-2px);
}


/* Outline button */

.footer-btn-outline {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.75);
}


.footer-btn-outline:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    border-color: #ffffff;

    transform: translateY(-2px);
}


/* =====================================================
   EXISTING FOOTER
===================================================== */

.footer {
    position: relative;

    background: #03182b;

    color: #ffffff;

    padding: 45px 0 20px;
}


/* Footer headings */

.footer h5 {
    color: #ffffff;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 20px;
}


/* Footer paragraphs */

.footer p {
    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;

    line-height: 1.7;
}


/* Footer lists */

.footer ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.footer ul li {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
}


.footer ul li a {
    color: rgba(255, 255, 255, 0.70);

    text-decoration: none;

    transition: 0.3s;
}


.footer ul li a:hover {
    color: #e8a93a;

    padding-left: 3px;
}


/* Contact icons */

.footer .fas,
.footer .fab {
    margin-right: 8px;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 18px;
}


.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-social a:hover {
    background: #e8a93a;

    border-color: #e8a93a;

    color: #ffffff;

    transform: translateY(-3px);
}


/* Footer divider */

.footer hr {
    margin: 25px 0 20px;

    border: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* Copyright */

.footer .row:last-child {
    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;
}


.footer strong {
    color: #ffffff;
}


/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 991px) {

    .footer-cta {
        min-height: auto;

        text-align: center;
    }

    .footer-cta h2 {
        font-size: 30px;
    }

    .footer-btn {
        margin: 5px;
    }

}


@media (max-width: 575px) {

    .footer-cta {
        padding: 15px;
    }

    .footer-cta-content {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .footer-cta h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .footer-cta-small {
        font-size: 11px;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .footer-btn {
        width: 100%;

        margin: 5px 0;
    }

}

/* =====================================================
   COMPACT FOOTER
===================================================== */

.footer {
    padding: 35px 0 18px;
}

.footer .row {
    margin-bottom: 0;
}

.footer h5 {
    margin-bottom: 12px;
}

.footer p {
    margin-bottom: 8px;
    line-height: 1.55;
}

.footer ul li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-social {
    margin-top: 12px;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
}

.footer hr {
    margin: 18px 0 14px;
}

.footer .row:last-child {
    font-size: 12px;
}
/* =====================================================
   COMPACT FOOTER CTA
===================================================== */

.footer-cta {
    min-height: 190px;
}

.footer-cta-content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-cta h2 {
    font-size: 30px;
    line-height: 1.15;
}

.footer-cta p {
    margin-top: 8px;
}
/* =========================================================
   HOMEPAGE FEATURED PROPERTY SECTIONS
   MATCHES THE 4-CARD DESIGN
========================================================= */

/* Section */
.featured-properties {
    padding: 55px 0 60px;
    background: #fff;
}

.featured-properties.sale-properties {
    background: #fff;
    border-top: 1px solid #eee;
}

/* Section heading */
.featured-properties .section-header {
    margin-bottom: 28px;
}

.featured-properties .section-header h2 {
    margin: 0 0 7px;
    color: #102a50;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.featured-properties .section-header p {
    margin: 0;
    color: #7b8491;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================================
   FOUR CARDS ON DESKTOP
========================================================= */

.featured-properties .property-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

/* =========================================================
   CARD
========================================================= */

.featured-properties .property-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e7e9ec;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.featured-properties .property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 24px rgba(0, 0, 0, .11);
}

/* =========================================================
   IMAGE
========================================================= */

.featured-properties .property-image {
    position: relative;
    height: 145px;
    overflow: hidden;
}

.featured-properties .property-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.featured-properties .property-card:hover .property-image img {
    transform: scale(1.04);
}

/* =========================================================
   FEATURED BADGE
========================================================= */

.featured-properties .featured-badge {
    position: absolute;
    top: 9px;
    left: 9px;

    display: inline-flex;
    align-items: center;
    gap: 4px;

    margin: 0;
    padding: 5px 8px;

    background: #d49a3a;
    color: #fff;

    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    z-index: 5;
}

.featured-properties .featured-badge i {
    font-size: 15px;
}

/* =========================================================
   SALE BADGE
========================================================= */

.featured-properties .sale-badge {
    position: absolute;
    left: 9px;
    bottom: 9px;

    display: inline-flex;
    align-items: center;

    padding: 5px 8px;

    background: #102a50;
    color: #fff;

    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;

    z-index: 5;
}

/* =========================================================
   FAVORITE BUTTON
========================================================= */

.featured-properties .favorite {
    position: absolute;
    top: 9px;
    right: 9px;

    width: 25px;
    height: 25px;

    border-radius: 50%;
    background: rgba(255,255,255,.92);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #687386;
    box-shadow: 0 2px 7px rgba(0,0,0,.12);

    z-index: 10;
}

.featured-properties .favorite i {
    font-size: 12px;
}

.featured-properties .favorite:hover {
    background: #d4a72c;
    color: #fff;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.featured-properties .property-content {
    padding: 13px 12px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Hide category pill so the design matches the screenshot */
.featured-properties .property-category {
    display: none;
}

/* Title */
.featured-properties .property-content h3 {
    margin: 0 0 5px;

    color: #102a50;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;

    min-height: 34px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   LOCATION
========================================================= */

.featured-properties .location {
    display: flex;
    align-items: center;
    gap: 4px;

    margin: 0 0 9px;

    color: #777f8c;
    font-size: 9px;
    line-height: 1.3;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-properties .location i {
    color: #d49a3a;
    font-size: 12px;
    flex-shrink: 0;
}

/* =========================================================
   PROPERTY INFO
========================================================= */

.featured-properties .property-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 5px;

    padding: 7px 0;
    margin: 0 0 9px;

    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
}

.featured-properties .property-info div {
    display: flex;
    align-items: center;
    gap: 3px;

    color: #687386;
    font-size: 12px;

    white-space: nowrap;
}

.featured-properties .property-info i {
    margin: 0;
    color: #d49a3a;
    font-size: 9px;
}

/* =========================================================
   FOOTER / PRICE
========================================================= */

.featured-properties .property-footer {
    margin-top: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 8px;
}

.featured-properties .price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.featured-properties .price strong {
    display: inline;
    color: #b47719;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.featured-properties .price span {
    color: #777;
    font-size: 11px;
}

/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.featured-properties .details-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px 8px;

    background: #d49a3a;
    color: #fff;

    border-radius: 3px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: background .25s ease;
}

.featured-properties .details-btn i {
    display: none;
}

.featured-properties .details-btn:hover {
    background: #b77c22;
    color: #fff;
}

/* =========================================================
   SALE SECTION
========================================================= */

.sale-properties .property-section-label {
    color: #d49a3a;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;

    display: flex;
    align-items: center;
    gap: 5px;
}

.sale-properties .property-section-label i {
    font-size: 9px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .featured-properties .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .featured-properties .property-image {
        height: 190px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-properties {
        padding: 40px 0 45px;
    }

    .featured-properties .property-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .featured-properties .property-image {
        height: 220px;
    }

    .featured-properties .property-content h3 {
        font-size: 15px;
    }

    .featured-properties .location {
        font-size: 10px;
    }

    .featured-properties .property-info div {
        font-size: 10px;
    }

    .featured-properties .price strong {
        font-size: 14px;
    }

}

/* =========================================================
   VIEW ALL PROPERTIES - TOP RIGHT
========================================================= */

.sale-properties .section-header {
    position: relative;
}

.sale-properties .view-all-properties {
    position: absolute;
    top: 8px;
    right: 0;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #c58a2c;
    background: transparent;
    border: none;

    padding: 0;
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sale-properties .view-all-properties i {
    font-size: 11px;
    transition: transform .2s ease;
}

.sale-properties .view-all-properties:hover {
    color: #102a50;
}

.sale-properties .view-all-properties:hover i {
    transform: translateX(4px);
}

/* =========================================================
   FEATURED PROPERTIES - VIEW ALL STAYS
========================================================= */

.featured-properties:not(.sale-properties) .section-header {
    position: relative;
}

.featured-properties:not(.sale-properties) .view-all-stays {
    position: absolute;
    top: 8px;
    right: 0;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #c58a2c;
    background: transparent;
    border: none;

    padding: 0;
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.featured-properties:not(.sale-properties) .view-all-stays i {
    font-size: 11px;
    transition: transform .2s ease;
}

.featured-properties:not(.sale-properties) .view-all-stays:hover {
    color: #102a50;
}

.featured-properties:not(.sale-properties) .view-all-stays:hover i {
    transform: translateX(4px);
}


/* =====================================================
   AI CHAT BUTTON + HELP TEXT
===================================================== */


.ai-chat-wrapper {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;
}


/* =====================================================
   AI CHAT ICON
===================================================== */

.ai-chat-float {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #081b3a;
    color: #fff;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .20);

    transition: all .25s ease;
}

.ai-chat-float:hover {
    background: #d49a3a;

    transform: translateY(-3px);
}


/* =====================================================
   HELP TOOLTIP
   HIDDEN BY DEFAULT
===================================================== */

.ai-chat-tooltip {
    position: absolute;

    right: 72px;
    top: 50%;

    transform: translateY(-50%) translateX(10px);

    width: max-content;

    background: #fff;
    color: #102a50;

    padding: 9px 13px;

    border-radius: 6px;

    border: 1px solid #e8ebef;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


/* Remove default paragraph spacing */

.ai-chat-tooltip p {
    margin: 0;

    font-size: 12px;
    line-height: 1.45;

    white-space: nowrap;
}


/* =====================================================
   TOOLTIP ARROW
===================================================== */

.ai-chat-tooltip::after {
    content: "";

    position: absolute;

    right: -6px;
    top: 50%;

    width: 11px;
    height: 11px;

    background: #fff;

    border-top: 1px solid #e8ebef;
    border-right: 1px solid #e8ebef;

    transform: translateY(-50%) rotate(45deg);
}


/* =====================================================
   SHOW TOOLTIP WHEN HOVERING AI BUTTON
===================================================== */

.ai-chat-wrapper:hover .ai-chat-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .ai-chat-wrapper {
        right: 15px;
        bottom: 15px;
    }

    .ai-chat-float {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }

    .ai-chat-tooltip {
        right: 64px;
    }

    .ai-chat-tooltip p {
        font-size: 11px;
    }

}

/* =====================================================
   SECTION HEADER - RESPONSIVE VIEW ALL LINKS
===================================================== */

/* Desktop */
.sale-properties .section-header,
.featured-properties:not(.sale-properties) .section-header {
    position: relative;
}

.sale-properties .view-all-properties,
.featured-properties:not(.sale-properties) .view-all-stays {
    position: absolute;
    top: 8px;
    right: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .sale-properties .section-header,
    .featured-properties:not(.sale-properties) .section-header {
        position: relative;

        padding-bottom: 30px;
    }

    .sale-properties .view-all-properties,
    .featured-properties:not(.sale-properties) .view-all-stays {
        position: static;

        display: inline-flex;

        margin-top: 10px;

        font-size: 12px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .sale-properties .section-header,
    .featured-properties:not(.sale-properties) .section-header {
        padding-bottom: 0;
    }

    .sale-properties .view-all-properties,
    .featured-properties:not(.sale-properties) .view-all-stays {

        position: static;

        display: inline-flex;

        align-items: center;

        margin-top: 8px;

        font-size: 12px;
        font-weight: 600;

        line-height: 1.4;
    }

    /* Make sure the heading has room */
    .sale-properties .section-header h2,
    .featured-properties:not(.sale-properties) .section-header h2 {
        margin-bottom: 7px;
    }

    /* Description */
    .sale-properties .section-header p,
    .featured-properties:not(.sale-properties) .section-header p {
        margin-bottom: 0;
    }

}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-toggler {
    border: 1px solid #fff !important;
    outline: none !important;
    box-shadow: none !important;
}



/*new properties website css/*
/* =========================================================
   MALAIKA PROPERTIES
   REAL ESTATE WEBSITE
========================================================= */


/* =========================================================
   GOOGLE FONT
========================================================= */

@import url(
    'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap'
);


/* =========================================================
   ROOT
========================================================= */

:root {

    --navy: #102a50;

    --navy-dark: #092142;

    --gold: #d99a1e;

    --gold-light: #efb33d;

    --text: #27364a;

    --muted: #747d89;

    --light: #f6f7f9;

    --border: #e5e8ed;

    --white: #ffffff;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Poppins', sans-serif;

    background: #ffffff;

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.5;

}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    transition: .25s ease;
}


button,
input,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


ul {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: 100%;

    max-width: 1180px;

    margin-left: auto;

    margin-right: auto;

    padding-left: 15px;

    padding-right: 15px;

}


/* =========================================================
   NAVBAR
========================================================= */

.malaika-navbar {

    width: 100%;

    min-height: 78px;

    background: var(--white);

    position: relative;

    z-index: 1000;

    box-shadow:
        0 2px 12px rgba(0, 0, 0, .08);

    padding: 8px 0;

}


.malaika-navbar .container {

    display: flex;

    align-items: center;

    min-height: 62px;

}


/* =========================================================
   LOGO
========================================================= */

.malaika-brand {

    display: flex;

    align-items: center;

    padding: 0 !important;

    margin: 0;

}


.malaika-brand img {

    width: auto;

    height: 60px;

    max-width: 205px;

    object-fit: contain;

}


/* =========================================================
   NAVIGATION
========================================================= */

.malaika-nav {

    display: flex;

    align-items: center;

    gap: 26px;

    margin-left: auto;

    margin-right: 28px;

}


.malaika-nav .nav-link {

    position: relative;

    padding: 8px 0 !important;

    color: var(--navy);

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;

}


.malaika-nav .nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .25s ease;

}


.malaika-nav .nav-link:hover,

.malaika-nav .nav-link.active {

    color: var(--gold);

}


.malaika-nav .nav-link:hover::after,

.malaika-nav .nav-link.active::after {

    width: 100%;

}


/* =========================================================
   NAV RIGHT
========================================================= */

.malaika-nav-right {

    display: flex;

    align-items: center;

    gap: 20px;

}


.malaika-phone {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

}


.malaika-phone i {

    font-size: 13px;

}


.malaika-phone:hover {

    color: var(--gold);

}


.list-property-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding: 0 18px;

    background: var(--navy);

    color: #fff;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

}


.list-property-btn:hover {

    background: var(--gold);

    color: #fff;

}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.malaika-navbar .navbar-toggler {

    border: 1px solid var(--navy) !important;

    border-radius: 4px;

    padding: 7px 9px;

}


.malaika-navbar .navbar-toggler:focus {

    box-shadow:
        0 0 0 2px rgba(217, 154, 30, .25);

}


.malaika-navbar .navbar-toggler-icon {

    width: 20px;

    height: 20px;

    background-image:

        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23102a50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}


/* =========================================================
   HERO
========================================================= */

.property-hero {

    position: relative;

    min-height: 390px;

    background-image:
        url("../images/hr.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.property-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(8,30,58,.94) 0%,
            rgba(255,255,255,.91) 28%,
            rgba(255,255,255,.48) 53%,
            rgba(255,255,255,.03) 100%
        );

}


/* =========================================================
   HERO CONTENT
========================================================= */

.property-hero .container {

    position: relative;

    z-index: 2;

}


.property-hero-content {

    padding: 52px 0 80px;

    max-width: 470px;

}


.property-hero h1 {

    margin: 0 0 16px;

    color: var(--navy);

    font-size: 47px;

    line-height: .99;

    letter-spacing: -1.6px;

    font-weight: 800;

}


.property-hero h1 span {

    color: var(--gold);

}


.property-hero p {

    margin: 0;

    color: #29384d;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 400;

}


/* =========================================================
   PROPERTY SEARCH SECTION
========================================================= */

.property-search-section {

    position: relative;

    z-index: 30;

    margin-top: -55px;

}


.property-search-tabs {

    display: flex;

    align-items: flex-end;

}


.search-tab {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    height: 43px;

    padding: 0 20px;

    background: #ffffff;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;

    border-radius: 5px 5px 0 0;

}


.search-tab i {

    font-size: 15px;

}


.search-tab.active {

    background: var(--navy);

    color: #ffffff;

}


.search-tab:hover:not(.active) {

    color: var(--gold);

}


/* =========================================================
   SEARCH BOX
========================================================= */

.property-search {

    min-height: 70px;

    background: #ffffff;

    border-radius: 0 7px 7px 7px;

    padding: 9px;

    display: grid;

    grid-template-columns:
        1.35fr
        1.15fr
        .9fr
        .9fr
        .9fr
        auto;

    gap: 0;

    box-shadow:
        0 8px 28px rgba(0,0,0,.15);

}


/* =========================================================
   SEARCH FIELD
========================================================= */

.search-field {

    min-height: 50px;

    padding: 5px 14px;

    display: flex;

    align-items: center;

    gap: 9px;

    border-right: 1px solid #e5e7eb;

}


.search-icon {

    flex: 0 0 auto;

    color: var(--gold);

    font-size: 17px;

}


.search-field-content {

    min-width: 0;

    flex: 1;

}


.search-field-content label {

    display: block;

    margin: 0 0 1px;

    color: #8a919a;

    font-size: 14px;

    font-weight: 500;

}


.search-field-content select,

.search-field-content input {

    display: block;

    width: 100%;

    height: 23px;

    padding: 0;

    border: none;

    outline: none;

    background: transparent;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;

}


.search-field-content select {

    cursor: pointer;

}


.search-field-content input::placeholder {

    color: var(--navy);

    opacity: 1;

}


/* =========================================================
   SEARCH BUTTON
========================================================= */

.search-submit {

    align-self: center;

    height: 43px;

    min-width: 95px;

    padding: 0 16px;

    border: none;

    border-radius: 5px;

    background: var(--gold);

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

}


.search-submit:hover {

    background: var(--navy);

}


/* =========================================================
   BENEFITS
========================================================= */

.property-benefits {

    background: #ffffff;

    padding: 27px 0;

    border-bottom: 1px solid #eceef1;

}


.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.benefit-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 24px;

    border-right: 1px solid #e3e5e9;

}


.benefit-item:first-child {

    padding-left: 10px;

}


.benefit-item:last-child {

    border-right: none;

}


.benefit-icon {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    border-radius: 50%;

    background: var(--navy);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

}


.benefit-item h3 {

    margin: 0 0 3px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 700;

}


.benefit-item p {

    margin: 0;

    color: #737c88;

    font-size: 14px;

    line-height: 1.45;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.featured-properties {

    background: #ffffff;

    padding: 27px 0 34px;

}


.section-heading-row {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 15px;

}


.section-heading-row h2 {

    margin: 0;

    color: var(--navy);

    font-size: 20px;

    font-weight: 800;

}


.heading-line {

    width: 43px;

    height: 3px;

    margin-top: 6px;

    background: var(--gold);

}


.view-all {

    margin-top: 4px;

    color: var(--navy);

    font-size: 10px;

    font-weight: 600;

}


.view-all i {

    margin-left: 4px;

}


.view-all:hover {

    color: var(--gold);

}


/* =========================================================
   PROPERTY GRID
========================================================= */

.property-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* =========================================================
   PROPERTY CARD
========================================================= */

.property-card {

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e3e6eb;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 2px 9px rgba(0,0,0,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.property-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 9px 24px rgba(0,0,0,.11);

}


/* =========================================================
   PROPERTY IMAGE
========================================================= */

.property-image {

    position: relative;

    height: 142px;

    overflow: hidden;

}


.property-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .35s ease;

}


.property-card:hover .property-image img {

    transform: scale(1.04);

}


/* =========================================================
   PROPERTY STATUS
========================================================= */

.property-status {

    position: absolute;

    top: 7px;

    left: 7px;

    background: var(--navy);

    color: #ffffff;

    padding: 4px 7px;

    border-radius: 3px;

    font-size: 8px;

    font-weight: 600;

}


/* =========================================================
   HEART
========================================================= */

.property-heart {

    position: absolute;

    top: 7px;

    right: 7px;

    width: 25px;

    height: 25px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}


.property-heart:hover {

    background: var(--gold);

    color: #ffffff;

}


/* =========================================================
   PROPERTY CONTENT
========================================================= */

.property-card-content {

    padding: 10px 11px 12px;

}


.property-price {

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 17px;

    font-weight: 800;

}


.property-price small {

    color: #7a828c;

    font-size: 8px;

    font-weight: 500;

}


/* =========================================================
   PROPERTY DETAILS
========================================================= */

.property-details {

    display: flex;

    align-items: center;

    gap: 11px;

    padding-bottom: 8px;

    border-bottom: 1px solid #eeeeee;

}


.property-details span {

    color: #56606d;

    font-size: 8px;

    white-space: nowrap;

}


.property-details i {

    margin-right: 3px;

    color: var(--gold);

}


/* =========================================================
   PROPERTY LOCATION
========================================================= */

.property-location {

    margin-top: 8px;

    color: #68717d;

    font-size: 8px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


.property-location i {

    color: var(--gold);

    margin-right: 3px;

}


/* =========================================================
   PROPERTY TYPE
========================================================= */

.property-type {

    margin-top: 7px;

    color: #303c4e;

    font-size: 8px;

    font-weight: 600;

}


/* =========================================================
   NO PROPERTIES
========================================================= */

.no-properties {

    grid-column: 1 / -1;

    text-align: center;

    padding: 50px 20px;

    color: var(--muted);

}


.no-properties i {

    color: var(--gold);

    font-size: 35px;

    margin-bottom: 12px;

}


.no-properties h3 {

    color: var(--navy);

    font-size: 16px;

    margin-bottom: 5px;

}


.no-properties p {

    font-size: 11px;

}


/* =========================================================
   WHY MALAIKA
========================================================= */

.why-malaika {

    background: #ffffff;

    padding: 0 0 35px;

}


.why-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        1.15fr
        .7fr;

    align-items: center;

    gap: 28px;

}


/* =========================================================
   WHY IMAGE
========================================================= */

.why-image {

    height: 205px;

    overflow: hidden;

    border-radius: 5px;

}


.why-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   WHY CONTENT
========================================================= */

.why-content h2 {

    margin: 0 0 17px;

    color: var(--navy);

    font-size: 19px;

    font-weight: 800;

}


.why-list {

    display: flex;

    flex-direction: column;

    gap: 11px;

}


.why-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.why-item span {

    width: 18px;

    height: 18px;

    flex: 0 0 18px;

    border-radius: 50%;

    background: var(--gold);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 8px;

}


.why-item p {

    margin: 0;

    color: #4d5968;

    font-size: 13px;

    line-height: 1.45;

}


/* =========================================================
   SLOGAN
========================================================= */

.why-slogan {

    min-height: 145px;

    padding-left: 25px;

    border-left: 1px solid #dfe2e6;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.slogan-house {

    color: var(--gold);

    font-size: 40px;

    margin-bottom: 8px;

}


.why-slogan h3 {

    margin: 0;

    color: var(--navy);

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;

}


/* =========================================================
   APPRAISAL BANNER
========================================================= */

.appraisal-banner {

    background: var(--navy);

    padding: 19px 0;

}


.appraisal-inner {

    display: flex;

    align-items: center;

    gap: 14px;

}


.appraisal-icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

}


.appraisal-copy {

    flex: 1;

}


.appraisal-copy h2 {

    margin: 0 0 2px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

}


.appraisal-copy p {

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 14px;

}


.appraisal-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding: 0 20px;

    background: var(--gold);

    color: var(--navy);

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;

}


.appraisal-button:hover {

    background: #ffffff;

    color: var(--navy);

}


/* =========================================================
   SUBURBS
========================================================= */

.suburbs-section {

    background: #ffffff;

    padding: 21px 0 27px;

}


.suburb-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;

}


.suburb-card {

    display: block;

    text-align: center;

}


.suburb-card img {

    width: 100%;

    height: 66px;

    object-fit: cover;

    border-radius: 4px;

    transition: .3s ease;

}


.suburb-card span {

    display: block;

    margin-top: 6px;

    color: #374355;

    font-size: 13px;

    font-weight: 500;

}


.suburb-card:hover img {

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);

}


.suburb-card:hover span {

    color: var(--gold);

}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .malaika-nav {

        gap: 18px;

        margin-right: 18px;

    }


    .malaika-nav .nav-link {

        font-size: 11px;

    }


    .malaika-phone span {

        display: none;

    }


    .property-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 13px;

    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .malaika-navbar {

        min-height: 70px;

    }


    .malaika-brand img {

        height: 55px;

    }


    .malaika-navbar .navbar-collapse {

        margin-top: 8px;

        padding: 18px;

        background: #ffffff;

        border-top: 1px solid var(--border);

        box-shadow:
            0 10px 25px rgba(0,0,0,.08);

    }


    .malaika-nav {

        margin: 0 0 15px !important;

        flex-direction: column;

        align-items: flex-start;

        gap: 2px;

    }


    .malaika-nav .nav-link {

        width: 100%;

        padding: 9px 0 !important;

        font-size: 12px;

    }


    .malaika-nav-right {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

    }


    .malaika-phone {

        justify-content: center;

        padding: 8px;

    }


    .malaika-phone span {

        display: inline;

    }


    .list-property-btn {

        width: 100%;

    }


    .property-hero {

        min-height: 430px;

    }


    .property-hero-content {

        padding: 55px 0 100px;

    }


    .property-search {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;

        border-radius: 0 6px 6px 6px;

    }


    .search-field {

        border: 1px solid var(--border);

        border-radius: 4px;

    }


    .search-submit {

        width: 100%;

        grid-column: 1 / -1;

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

    }


    .benefit-item {

        border-right: none;

        padding: 10px;

    }


    .property-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .why-slogan {

        grid-column: 1 / -1;

        border-left: none;

        border-top: 1px solid var(--border);

        padding: 20px 0 0;

    }


    .suburb-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .property-hero {

        min-height: 480px;

        background-position:
            62% center;

    }


    .property-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(255,255,255,.96),
                rgba(255,255,255,.72)
            );

    }


    .property-hero-content {

        padding: 70px 0 115px;

    }


    .property-hero h1 {

        font-size: 42px;

        letter-spacing: -1.2px;

    }


    .property-hero p {

        font-size: 12px;

    }


    .property-search-section {

        margin-top: -45px;

    }


    .property-search {

        grid-template-columns: 1fr;

    }


    .search-submit {

        grid-column: auto;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .benefit-item {

        padding: 10px 0;

        border-bottom: 1px solid var(--border);

    }


    .benefit-item:last-child {

        border-bottom: none;

    }


    .section-heading-row {

        align-items: flex-start;

        gap: 10px;

    }


    .section-heading-row h2 {

        font-size: 18px;

    }


    .view-all {

        font-size: 9px;

        white-space: nowrap;

    }


    .property-grid {

        grid-template-columns: 1fr;

    }


    .property-image {

        height: 190px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-image {

        height: 230px;

    }


    .why-slogan {

        grid-column: auto;

    }


    .appraisal-inner {

        flex-wrap: wrap;

    }


    .appraisal-button-wrap {

        width: 100%;

    }


    .appraisal-button {

        width: 100%;

    }


    .suburb-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {

        padding-left: 13px;

        padding-right: 13px;

    }


    .malaika-brand img {

        height: 49px;

        max-width: 175px;

    }


    .property-hero h1 {

        font-size: 37px;

    }


    .property-hero-content {

        padding-top: 60px;

    }


    .search-tab {

        padding: 0 15px;

    }


    .property-card-content {

        padding: 12px;

    }


    .property-image {

        height: 200px;

    }


    .property-details {

        gap: 16px;

    }

}


/* =========================================================
   LISTING PAGE HERO
========================================================= */

.listing-page-hero {

    position: relative;

    min-height: 300px;

    background-image:
        url("../images/hr.png");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

}


.rent-hero {

    background-position: center 55%;

}


.suburbs-hero {

    background-position: center 45%;

}


.listing-page-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,30,58,.94) 0%,
            rgba(8,30,58,.78) 42%,
            rgba(8,30,58,.20) 100%
        );

}


.listing-page-hero .container {

    position: relative;

    z-index: 2;

}


.listing-page-content {

    max-width: 600px;

    padding: 55px 0;

}


.listing-page-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.listing-page-content h1 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 800;

}


.listing-page-content p {

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   LISTING PAGE SECTION
========================================================= */

.listing-page-section {

    background: #ffffff;

    padding: 55px 0 65px;

}


.listing-page-heading {

    display: flex;

    justify-content: space-between;

    margin-bottom: 28px;

}


.section-small-label {

    display: block;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


.listing-page-heading h2 {

    margin: 0 0 6px;

    color: var(--navy);

    font-size: 27px;

    font-weight: 800;

}


.listing-page-heading p {

    margin: 0;

    color: #737d89;

    font-size: 11px;

}


/* =========================================================
   RENT STATUS
========================================================= */

.rent-status {

    background: var(--gold);

}


/* =========================================================
   PROPERTY BUTTON
========================================================= */

.property-view-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    width: 100%;

    min-height: 36px;

    margin-top: 13px;

    background: var(--navy);

    color: #ffffff;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 600;

}


.property-view-button:hover {

    background: var(--gold);

    color: #ffffff;

}


/* =========================================================
   EMPTY PROPERTIES
========================================================= */

.empty-properties {

    grid-column: 1 / -1;

    text-align: center;

    padding: 70px 20px;

}


.empty-properties-icon {

    width: 60px;

    height: 60px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: rgba(217,154,30,.12);

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}


.empty-properties h3 {

    margin: 0 0 7px;

    color: var(--navy);

    font-size: 18px;

}


.empty-properties p {

    max-width: 450px;

    margin: 0 auto 18px;

    color: #777;

    font-size: 11px;

    line-height: 1.6;

}


.empty-properties-button {

    display: inline-flex;

    padding: 10px 20px;

    background: var(--navy);

    color: #ffffff;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 600;

}


.empty-properties-button:hover {

    background: var(--gold);

    color: #ffffff;

}


/* =========================================================
   SUBURBS PAGE
========================================================= */

.suburbs-page-section {

    background: #ffffff;

    padding: 55px 0 65px;

}


.suburbs-page-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.suburb-large-card {

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e6eb;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);

}


.suburb-large-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

}


.suburb-large-image {

    height: 155px;

    overflow: hidden;

}


.suburb-large-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .35s ease;

}


.suburb-large-card:hover
.suburb-large-image img {

    transform: scale(1.06);

}


.suburb-large-content {

    padding: 14px;

}


.suburb-large-content h3 {

    margin: 0 0 5px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;

}


.suburb-large-content span {

    color: #747d89;

    font-size: 9px;

}


.suburb-large-content i {

    margin-left: 4px;

    color: var(--gold);

}


/* =========================================================
   SELECTED SUBURB PROPERTIES
========================================================= */

.suburb-properties-section {

    background: #f7f8fa;

    padding: 55px 0 70px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .listing-page-hero {

        min-height: 330px;

    }


    .listing-page-content h1 {

        font-size: 36px;

    }


    .suburbs-page-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .listing-page-hero {

        min-height: 300px;

    }


    .listing-page-content {

        padding: 45px 0;

    }


    .listing-page-content h1 {

        font-size: 31px;

    }


    .listing-page-content p {

        font-size: 11px;

    }


    .listing-page-heading h2 {

        font-size: 22px;

    }


    .suburbs-page-grid {

        grid-template-columns: 1fr;

    }


    .suburb-large-image {

        height: 190px;

    }

}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {

    position: relative;

    min-height: 320px;

    background-image:
        url("../images/hr.png");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

}


.about-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,30,58,.96) 0%,
            rgba(8,30,58,.82) 40%,
            rgba(8,30,58,.20) 100%
        );

}


.about-hero .container {

    position: relative;

    z-index: 2;

}


.about-hero-content {

    max-width: 600px;

    padding: 55px 0;

}


.about-label {

    display: inline-block;

    margin-bottom: 10px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.about-hero-content h1 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 800;

}


.about-hero-content p {

    margin: 0;

    max-width: 500px;

    color: rgba(255,255,255,.88);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {

    padding: 80px 0;

    background: #ffffff;

}


.about-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 65px;

    align-items: center;

}


.about-intro-image {

    overflow: hidden;

    height: 430px;

    border-radius: 7px;

}


.about-intro-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.about-intro-content {

    max-width: 560px;

}


.about-intro-content h2 {

    margin: 0 0 20px;

    color: #0D2A57;

    font-size: 38px;

    line-height: 1.15;

    font-weight: 800;

}


.about-intro-content p {

    margin-bottom: 15px;

    color: #687384;

    font-size: 15px;

    line-height: 1.8;

}


.about-primary-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    padding: 13px 22px;

    background: #0D2A57;

    color: #ffffff;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

}


.about-primary-button:hover {

    background: #D9A21E;

    color: #ffffff;

}


/* =========================================================
   ABOUT VALUES
========================================================= */

.about-values {

    padding: 75px 0;

    background: #f7f8fa;

}


.about-section-heading {

    max-width: 680px;

    margin: 0 auto 40px;

    text-align: center;

}


.about-section-heading h2 {

    margin: 0 0 10px;

    color: #0D2A57;

    font-size: 30px;

    font-weight: 800;

}


.about-section-heading p {

    margin: 0;

    color: #737d89;

    font-size: 14px;

    line-height: 1.7;

}


.about-values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.about-value-card {

    padding: 30px 22px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 7px;

    text-align: center;

    transition: .3s ease;

}


.about-value-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.09);

}


.about-value-icon {

    width: 55px;

    height: 55px;

    margin: 0 auto 17px;

    border-radius: 50%;

    background: #0D2A57;

    color: #D9A21E;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.about-value-card h3 {

    margin: 0 0 10px;

    color: #0D2A57;

    font-size: 15px;

    font-weight: 700;

}


.about-value-card p {

    margin: 0;

    color: #747d89;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   SERVICES
========================================================= */

.about-services {

    padding: 80px 0;

    background: #ffffff;

}


.about-services-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 70px;

    align-items: center;

}


.about-services-content h2 {

    margin: 0 0 17px;

    color: #0D2A57;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;

}


.about-services-content p {

    max-width: 480px;

    margin: 0 0 22px;

    color: #737d89;

    font-size: 15px;

    line-height: 1.8;

}


.about-outline-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 20px;

    border: 1px solid #0D2A57;

    color: #0D2A57;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

}


.about-outline-button:hover {

    background: #0D2A57;

    color: #ffffff;

}


.about-services-list {

    display: flex;

    flex-direction: column;

}


.about-service-item {

    display: grid;

    grid-template-columns:
        55px 1fr 20px;

    gap: 17px;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid #e6e8eb;

}


.about-service-item:first-child {

    border-top: 1px solid #e6e8eb;

}


.about-service-icon {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: rgba(217,162,30,.12);

    color: #D9A21E;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}


.about-service-item h3 {

    margin: 0 0 5px;

    color: #0D2A57;

    font-size: 15px;

    font-weight: 700;

}


.about-service-item p {

    margin: 0;

    color: #737d89;

    font-size: 13px;

    line-height: 1.5;

}


.service-arrow {

    color: #D9A21E;

    font-size: 15px;

}


/* =========================================================
   PROCESS
========================================================= */

.about-process {

    padding: 75px 0;

    background: #f7f8fa;

}


.about-process-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.process-card {

    position: relative;

    padding: 35px 25px;

    background: #ffffff;

    border-radius: 7px;

    text-align: center;

    border: 1px solid #e5e7eb;

}


.process-number {

    position: absolute;

    top: 16px;

    right: 18px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 800;

}


.process-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 17px;

    background: #0D2A57;

    color: #D9A21E;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

}


.process-card h3 {

    margin: 0 0 9px;

    color: #0D2A57;

    font-size: 15px;

    font-weight: 700;

}


.process-card p {

    margin: 0;

    color: #737d89;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {

    padding: 35px 0;

    background: #0D2A57;

}


.about-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.about-cta-inner span {

    color: #D9A21E;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.3px;

}


.about-cta-inner h2 {

    margin: 5px 0;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;

}


.about-cta-inner p {

    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 15px;

}


.about-cta-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.about-cta-primary,
.about-cta-secondary {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 19px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

}


.about-cta-primary {

    background: #D9A21E;

    color: #ffffff;

}


.about-cta-primary:hover {

    background: #ffffff;

    color: #0D2A57;

}


.about-cta-secondary {

    border: 1px solid rgba(255,255,255,.45);

    color: #ffffff;

}


.about-cta-secondary:hover {

    background: #ffffff;

    color: #0D2A57;

}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .about-intro-image {

        height: 380px;

    }


    .about-intro-content {

        max-width: 100%;

    }


    .about-values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-services-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}


@media (max-width: 767px) {

    .about-hero {

        min-height: 280px;

    }


    .about-hero-content {

        padding: 40px 0;

    }


    .about-hero-content h1 {

        font-size: 31px;

    }


    .about-intro {

        padding: 55px 0;

    }


    .about-intro-image {

        height: 280px;

    }


    .about-intro-content h2 {

        font-size: 29px;

    }


    .about-values {

        padding: 55px 0;

    }


    .about-values-grid {

        grid-template-columns: 1fr;

    }


    .about-services {

        padding: 55px 0;

    }


    .about-services-content h2 {

        font-size: 29px;

    }


    .about-process {

        padding: 55px 0;

    }


    .about-process-grid {

        grid-template-columns: 1fr;

    }


    .about-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .about-cta-buttons {

        width: 100%;

        flex-wrap: wrap;

    }

}
/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {

    position: relative;

    min-height: 245px;

    display: flex;

    align-items: center;

    background-image:
        url("../images/hr.png");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


.footer-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,27,58,.97) 0%,
            rgba(8,27,58,.90) 45%,
            rgba(8,27,58,.55) 100%
        );

}


.footer-cta-content {

    position: relative;

    z-index: 2;

}


.footer-cta-small {

    display: block;

    margin-bottom: 8px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.footer-cta h2 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;

}


.footer-cta p {

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 15px;

}


/* =========================================================
   FOOTER BUTTONS
========================================================= */

.footer-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 18px;

    margin-left: 6px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;

    transition: .25s ease;

}


.footer-btn-primary {

    background: #D9A21E;

    color: #ffffff;

}


.footer-btn-primary:hover {

    background: #ffffff;

    color: #0D2A57;

}


.footer-btn-outline {

    border: 1px solid rgba(255,255,255,.55);

    color: #ffffff;

}


.footer-btn-outline:hover {

    background: #ffffff;

    color: #0D2A57;

}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer {

    padding: 65px 0 25px;

    background: #081B3A;

    color: #ffffff;

}


.footer-logo {

    width: auto;

    height: 65px;

    max-width: 190px;

    object-fit: contain;

    border-radius: 7px;

}


.footer h5 {

    margin-bottom: 18px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 700;

}


.footer p {

    color: #c8d0da;

    font-size: 12px;

    line-height: 1.8;

}


.footer ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer li {

    margin-bottom: 8px;

    color: #c8d0da;

    font-size: 11px;

}


.footer li a {

    color: #c8d0da;

    text-decoration: none;

    transition: .25s ease;

}


.footer li a:hover {

    color: #D9A21E;

}


.footer p i {

    width: 22px;

    color: #D9A21E;

}


.footer p a {

    color: #c8d0da;

    text-decoration: none;

}


.footer p a:hover {

    color: #D9A21E;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

}


.footer-social a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;

    transition: .25s ease;

}


.footer-social a:hover {

    background: #D9A21E;

    border-color: #D9A21E;

    color: #ffffff;

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER DIVIDER
========================================================= */

.footer hr {

    margin: 30px 0 20px;

    border: 0;

    border-top: 1px solid rgba(255,255,255,.10);

}


.footer-bottom-row {

    color: #8995a5;

    font-size: 10px;

}


.footer-bottom-row strong {

    color: #ffffff;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .footer-cta {

        padding: 50px 0;

    }


    .footer-btn {

        margin-left: 0;

        margin-right: 6px;

    }

}


@media (max-width: 767px) {

    .footer-cta {

        min-height: auto;

        padding: 50px 0;

    }


    .footer-cta h2 {

        font-size: 25px;

    }


    .footer-cta p {

        font-size: 11px;

    }


    .footer-btn {

        margin-top: 5px;

    }


    .footer {

        padding: 50px 0 25px;

    }


    .footer-bottom-row {

        text-align: center;

        line-height: 1.8;

    }

}

/* =========================================================
   SELL HERO
========================================================= */

.sell-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background-image:
        url("../images/hr.png");

    background-size: cover;

    background-position: center;

}


.sell-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,24,49,.97) 0%,
            rgba(8,27,58,.88) 45%,
            rgba(8,27,58,.35) 100%
        );

}


.sell-hero .container {

    position: relative;

    z-index: 2;

}


.sell-hero-content {

    max-width: 650px;

    padding: 70px 0;

}


.sell-eyebrow {

    display: inline-block;

    margin-bottom: 13px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.sell-hero h1 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: 48px;

    line-height: 1.08;

    font-weight: 800;

}


.sell-hero p {

    max-width: 550px;

    margin: 0 0 25px;

    color: rgba(255,255,255,.84);

    font-size: 14px;

    line-height: 1.8;

}


.sell-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.sell-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 45px;

    padding: 0 20px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;

    transition: .25s ease;

}


.sell-btn-primary {

    background: #D9A21E;

    color: #ffffff;

}


.sell-btn-primary:hover {

    background: #ffffff;

    color: #0D2A57;

}


.sell-btn-outline {

    border: 1px solid rgba(255,255,255,.55);

    color: #ffffff;

}


.sell-btn-outline:hover {

    background: #ffffff;

    color: #0D2A57;

}


/* =========================================================
   SELL INTRO
========================================================= */

.sell-intro {

    padding: 85px 0;

    background: #ffffff;

}


.sell-image {

    height: 440px;

    overflow: hidden;

    border-radius: 7px;

}


.sell-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.sell-section-label {

    display: inline-block;

    margin-bottom: 10px;

    color: #D9A21E;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.sell-intro h2 {

    margin: 0 0 18px;

    color: #0D2A57;

    font-size: 35px;

    line-height: 1.15;

    font-weight: 800;

}


.sell-intro p {

    margin-bottom: 15px;

    color: #707b88;

    font-size: 14px;

    line-height: 1.8;

}


.sell-check-list {

    margin-top: 22px;

}


.sell-check-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    color: #0D2A57;

    font-size: 14px;

    font-weight: 600;

}


.sell-check-list i {

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(217,162,30,.14);

    color: #D9A21E;

    font-size: 15px;

}


/* =========================================================
   SELL SERVICES
========================================================= */

.sell-services {

    padding: 80px 0;

    background: #f7f8fa;

}


.sell-heading {

    max-width: 650px;

    margin: 0 auto 42px;

    text-align: center;

}


.sell-heading h2 {

    margin: 0 0 10px;

    color: #0D2A57;

    font-size: 31px;

    font-weight: 800;

}


.sell-heading p {

    margin: 0;

    color: #737d89;

    font-size: 14px;

    line-height: 1.7;

}


.sell-services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.sell-service-card {

    padding: 30px 22px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 7px;

    transition: .3s ease;

}


.sell-service-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

}


.sell-service-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0D2A57;

    color: #D9A21E;

    font-size: 18px;

}


.sell-service-card h3 {

    margin: 0 0 9px;

    color: #0D2A57;

    font-size: 14px;

    font-weight: 700;

}


.sell-service-card p {

    margin: 0;

    color: #747e8a;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   SELL PROCESS
========================================================= */

.sell-process {

    padding: 80px 0;

    background: #ffffff;

}


.sell-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.sell-process-card {

    position: relative;

    padding: 32px 22px;

    background: #f8f9fb;

    border-radius: 7px;

    text-align: center;

}


.sell-step-number {

    position: absolute;

    top: 14px;

    right: 17px;

    color: #D9A21E;

    font-size: 13px;

    font-weight: 800;

}


.sell-process-icon {

    width: 56px;

    height: 56px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #0D2A57;

    color: #D9A21E;

    border-radius: 50%;

    font-size: 18px;

}


.sell-process-card h3 {

    margin: 0 0 8px;

    color: #0D2A57;

    font-size: 14px;

    font-weight: 700;

}


.sell-process-card p {

    margin: 0;

    color: #737d89;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   SELL METHODS
========================================================= */

.sell-methods {

    padding: 80px 0;

    background: #f7f8fa;

}


.sell-methods h2 {

    margin: 0 0 18px;

    color: #0D2A57;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;

}


.sell-methods > .container > .row p {

    max-width: 500px;

    color: #737d89;

    font-size: 14px;

    line-height: 1.8;

}


.sell-method-list {

    background: #ffffff;

    border-radius: 7px;

    padding: 5px 25px;

}


.sell-method {

    display: grid;

    grid-template-columns:
        52px 1fr;

    gap: 17px;

    align-items: center;

    padding: 22px 0;

    border-bottom: 1px solid #e7e9ec;

}


.sell-method:last-child {

    border-bottom: 0;

}


.sell-method-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(217,162,30,.12);

    color: #D9A21E;

    font-size: 16px;

}


.sell-method h3 {

    margin: 0 0 5px;

    color: #0D2A57;

    font-size: 14px;

    font-weight: 700;

}


.sell-method p {

    margin: 0;

    color: #737d89;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   SELL CTA
========================================================= */

.sell-cta {

    padding: 40px 0;

    background: #0D2A57;

}


.sell-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.sell-cta-inner span {

    color: #D9A21E;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.sell-cta-inner h2 {

    margin: 6px 0;

    color: #ffffff;

    font-size: 26px;

    font-weight: 800;

}


.sell-cta-inner p {

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;

}


.sell-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    background: #D9A21E;

    color: #ffffff;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

}


.sell-cta-btn:hover {

    background: #ffffff;

    color: #0D2A57;

}


/* =========================================================
   SELL RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .sell-hero h1 {

        font-size: 40px;

    }


    .sell-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sell-process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sell-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 767px) {

    .sell-hero {

        min-height: 450px;

    }


    .sell-hero h1 {

        font-size: 32px;

    }


    .sell-hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }


    .sell-intro {

        padding: 55px 0;

    }


    .sell-image {

        height: 280px;

    }


    .sell-intro h2 {

        font-size: 29px;

    }


    .sell-services,
    .sell-process,
    .sell-methods {

        padding: 55px 0;

    }


    .sell-services-grid,
    .sell-process-grid {

        grid-template-columns: 1fr;

    }


    .sell-methods h2 {

        font-size: 29px;

    }


    .sell-cta-inner h2 {

        font-size: 23px;

    }

}