*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Tajawal',sans-serif;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1350px;
margin:auto;
}

.header{
position:fixed;
top:20px;
left:0;
width:100%;
z-index:1000;
}

.header .container{
background:#fff;
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.logo img{height:60px;}

.menu{
display:flex;
gap:40px;
}

.menu a{
text-decoration:none;
color:#222;
font-size:17px;
font-weight:700;
transition:.3s;
}

.menu a:hover{color:#2E7D32;}

.start-btn{
background:#2E7D32;
color:#fff;
padding:15px 30px;
border-radius:12px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.start-btn:hover{background:#1B5E20;}

@media(max-width:991px){
.menu{display:none;}
.logo img{height:50px;}
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("images/hero.jpg") center/cover;
color:#fff;
}

.hero-content{max-width:900px;padding:20px;}

.tag,.section-tag{
display:inline-block;
background:#2E7D32;
color:#fff;
padding:10px 22px;
border-radius:50px;
font-weight:700;
margin-bottom:25px;
}

.hero h1{
font-size:70px;
line-height:1.3;
margin-bottom:25px;
font-weight:800;
}

.hero p{
font-size:22px;
line-height:2;
margin-bottom:45px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero-btn,.start-btn{
background:#2E7D32;
color:#fff;
text-decoration:none;
}

.hero-btn,.hero-btn-outline{
padding:18px 35px;
border-radius:12px;
font-weight:700;
transition:.3s;
}

.hero-btn:hover{background:#1B5E20;}
.hero-btn-outline{
border:2px solid #fff;
color:#fff;
text-decoration:none;
}
.hero-btn-outline:hover{background:#fff;color:#2E7D32;}

.about,.why-us{padding:120px 0;background:#fff;}
.services,.areas{padding:120px 0;background:#F7F9F7;}

.about-container{
display:flex;
align-items:center;
gap:70px;
}

.about-image,.about-content{flex:1;}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-content h2{
font-size:46px;
margin-bottom:25px;
line-height:1.5;
}

.about-content p{
color:#666;
line-height:2;
font-size:18px;
margin-bottom:35px;
}

.section-title{
text-align:center;
font-size:42px;
margin:20px 0 60px;
}

.services,
.why-us,
.areas{
text-align:center;
}

.services-grid,
.why-grid,
.areas-grid{
display:grid;
gap:30px;
}

.services-grid,
.why-grid{
grid-template-columns:repeat(3,1fr);
}

.areas-grid{
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.service-card,
.why-card,
.area-card{
background:#fff;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
overflow:hidden;
}

.service-card,
.why-card{padding:40px;}

.service-card:hover,
.why-card:hover,
.area-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-number{
width:60px;
height:60px;
margin:0 auto 25px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:#2E7D32;
color:#fff;
font-weight:bold;
}

.area-card img{
width:100%;
height:260px;
object-fit:cover;
transition:.4s;
}

.area-card:hover img{transform:scale(1.08);}

.area-content{padding:25px;}

.area-content h3{margin-bottom:10px;}

.area-content p,
.service-card p,
.about-content p,
.why-card p{
color:#666;
line-height:1.9;
}

@media(max-width:991px){
.about-container{flex-direction:column;}
.about-content{text-align:center;}
.services-grid,
.why-grid,
.areas-grid{grid-template-columns:1fr;}
.hero h1{font-size:42px;}
.hero p{font-size:18px;}
}/* ===== Stats ===== */

.stats{
    padding:120px 0;
    background:#fff;
}

.stats-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.stats-content{
    flex:1;
}

.stats-content h2{
    font-size:46px;
    margin:20px 0;
    color:#222;
}

.stats-content p{
    color:#666;
    line-height:2;
    font-size:18px;
    margin-bottom:35px;
}

.stats-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.stat-box h3{
    font-size:42px;
    color:#2E7D32;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
    font-size:18px;
    font-weight:700;
}

@media(max-width:991px){

    .stats-container{
        flex-direction:column;
    }

    .stats-content{
        text-align:center;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}

/* ===== CTA ===== */

.cta{
    padding:120px 20px;
    margin:120px auto;
    width:90%;
    max-width:1300px;
    border-radius:30px;
    background:linear-gradient(135deg,#2E7D32,#1B5E20);
    text-align:center;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    left:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-120px;
    right:-100px;
}

.cta .container{
    position:relative;
    z-index:2;
}

.cta .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    margin-bottom:20px;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.cta p{
    max-width:720px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.9);
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta .hero-btn{
    background:#fff;
    color:#2E7D32;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.cta .hero-btn:hover{
    transform:translateY(-5px);
}

.cta .hero-btn-outline{
    padding:16px 34px;
    border:2px solid #fff;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta .hero-btn-outline:hover{
    background:#fff;
    color:#2E7D32;
}

@media (max-width:768px){

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:34px;
    }

    .cta p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta .hero-btn,
    .cta .hero-btn-outline{
        width:100%;
        max-width:280px;
    }

}

/* ===== Team ===== */

.team{
    padding:120px 0;
    background:#f8f9fa;
}

.team-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.team-heading .section-tag{
    display:inline-block;
    margin-bottom:20px;
}

.team-heading .section-title{
    font-size:48px;
    margin-bottom:20px;
    color:#222;
}

.team-heading .section-description{
    color:#666;
    line-height:2;
    font-size:18px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.team-card h3{
    color:#2E7D32;
    font-size:28px;
    margin-bottom:15px;
}

.team-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.team-btn{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.team-btn:hover{
    background:#1B5E20;
}

@media(max-width:991px){

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-heading .section-title{
        font-size:36px;
    }

}

/* ===== Locations ===== */

.locations{
    padding:120px 0;
    background:#fff;
}

.locations-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.locations-header .section-tag{
    display:inline-block;
    margin-bottom:20px;
}

.locations-header .section-title{
    font-size:48px;
    color:#222;
    margin-bottom:20px;
}

.locations-header .section-description{
    color:#666;
    line-height:2;
    font-size:18px;
}

.locations-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.location-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.location-card h3{
    font-size:28px;
    color:#2E7D32;
    margin-bottom:15px;
}

.location-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

@media (max-width:991px){

    .locations-grid{
        grid-template-columns:1fr;
    }

    .locations-header .section-title{
        font-size:36px;
    }

}

/* ===== Footer ===== */

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer p{
    color:#bbb;
    line-height:2;
}

.footer h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:60px;
    padding:25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#999;
}

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

#loader{
    position:fixed;
    inset:0;
    width:100%;
    height:100dvh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    overflow:hidden;
    box-sizing:border-box;

    background:rgba(255,255,255,.82);
    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);

    z-index:999999;
    text-align:center;

    transition:
        opacity .8s ease,
        backdrop-filter .8s ease,
        -webkit-backdrop-filter .8s ease,
        visibility .8s;
}

#loader img,
#loader h1{
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
    backdrop-filter:blur(0);
    -webkit-backdrop-filter:blur(0);
}

#loader.hide img,
#loader.hide h1{
    transform:scale(.94);
    opacity:0;
}

#loader img{
    display:block;
    width:420px;
    max-width:80vw;
    margin:0 auto;
}

#loader h1{
    margin-top:25px;
    font-size:56px;
    font-weight:800;
    color:#2E7D32;
    line-height:1.2;
}
/* ===========================
   Areas Page
=========================== */

.areas-hero{

    padding:180px 20px 90px;

    text-align:center;

    background:#f7f9f7;

}

.areas-hero h1{

    font-size:58px;

    color:#1f2937;

    margin:20px 0;

}

.areas-hero p{

    max-width:760px;

    margin:auto;

    font-size:19px;

    color:#666;

    line-height:1.9;

}



.areas-page{

    padding:90px 0;

}



.areas-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}



.area-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}



.area-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}



.area-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}



.area-card:hover img{

    transform:scale(1.08);

}



.area-content{

    padding:28px;

}



.area-content h3{

    font-size:30px;

    margin-bottom:12px;

    color:#222;

}



.area-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}



.area-btn{

    display:inline-block;

    padding:14px 30px;

    background:#2E7D32;

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.area-btn:hover{

    background:#1b5e20;

    transform:translateY(-3px);

}
/* =========================
   ARID HERO
========================= */

.arid-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:180px 20px 120px;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/arid.jpg") center/cover no-repeat;
}

.arid-hero .container{
    max-width:900px;
}

.arid-hero h1{
    font-size:70px;
    font-weight:800;
    line-height:1.3;
    margin:25px 0;
}

.arid-hero p{
    font-size:22px;
    line-height:2;
    margin-bottom:45px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-block;
    padding:18px 36px;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#1B5E20;
}

.hero-btn-outline{
    display:inline-block;
    padding:18px 36px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#2E7D32;
}

/* =========================
   ABOUT ARID
========================= */

.about-arid{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:flex;
    align-items:center;
    gap:70px;
}

.about-content,
.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#2E7D32;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.section-title{
    font-size:46px;
    color:#222;
    line-height:1.5;
    margin-bottom:25px;
}

.section-description,
.about-content p{
    font-size:18px;
    color:#666;
    line-height:2;
}

@media(max-width:991px){

    .arid-hero h1{
        font-size:46px;
    }

    .arid-hero p{
        font-size:18px;
    }

    .about-grid{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
    }

}
/* =========================
   FEATURES
========================= */

.arid-features{
    padding:120px 0;
    background:#F7F9F7;
    text-align:center;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#2E7D32;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.feature-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.9;
}

/* =========================
   EXPLORE
========================= */

.explore-section{
    padding:120px 0;
    background:#fff;
    text-align:center;
}

.explore-section h2{
    font-size:46px;
    margin-bottom:20px;
    color:#222;
}

.explore-section p{
    max-width:760px;
    margin:0 auto 40px;
    color:#666;
    line-height:2;
    font-size:18px;
}

/* =========================
   COMING PROPERTIES
========================= */

.coming-properties{
    padding:120px 0;
    background:#F7F9F7;
    text-align:center;
}

.coming-box{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:70px 50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.coming-icon{
    font-size:70px;
    margin-bottom:25px;
}

.coming-box h3{
    font-size:40px;
    color:#2E7D32;
    margin-bottom:20px;
}

.coming-box p{
    font-size:18px;
    color:#666;
    line-height:2;
    margin-bottom:35px;
}

.coming-box .hero-btn{
    display:inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .explore-section h2,
    .coming-box h3{
        font-size:34px;
    }

    .coming-box{
        padding:45px 25px;
    }

}
/* =========================
   WHY US
========================= */

.why-us{
    padding:120px 0;
    background:#fff;
    text-align:center;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-icon{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#2E7D32;
    color:#fff;
    font-size:30px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.9;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:120px 0;
    background:#F7F9F7;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:60px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#2E7D32;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    margin-bottom:20px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2E7D32;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

/* =========================
   LOCATION
========================= */

.location-section{
    padding:120px 0;
    background:#fff;
}

.location-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    margin-top:60px;
}

.location-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:0;
    border-radius:20px;
}

.location-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.location-card h3{
    color:#2E7D32;
    margin-bottom:12px;
}

.location-card p{
    color:#666;
    line-height:1.9;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .contact-grid,
    .location-grid{
        grid-template-columns:1fr;
    }

    .location-map iframe{
        min-height:320px;
    }

}
/* ===========================
   Home Glass Effect
=========================== */

.home-glass{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.2);
    border-radius:24px;

    box-shadow:
        0 8px 32px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition:.35s ease;
}

.home-glass:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.16);

    box-shadow:
        0 18px 40px rgba(0,0,0,.15),
        inset 0 1px 0 rgba(255,255,255,.35);
}

/* =========================
   CONTACT PHONE CARDS
========================= */

.contact-numbers-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:55px;
}

.phone-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:35px 25px 40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.phone-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.phone-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#E8F5E9;
    color:#2E7D32;

    font-size:30px;
}

.phone-card h3{
    font-size:24px;
    color:#111;
    margin-bottom:22px;
    direction:ltr;
}

.phone-action,
.whatsapp-action{
    width:75px;
    height:75px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#E8F5E9;
    color:#2E7D32;

    font-size:32px;
    text-decoration:none;

    transition:.3s;
}

.phone-action:hover,
.whatsapp-action:hover{
    background:#2E7D32;
    color:#fff;
    transform:scale(1.06);
}

.whatsapp-action{
    margin-bottom:0;
    font-size:30px;
}

@media(max-width:991px){

    .contact-numbers-grid{
        grid-template-columns:1fr;
        max-width:450px;
        margin-left:auto;
        margin-right:auto;
    }

}
/* =========================
   PROPERTIES
========================= */

.properties-section{
    padding:90px 0;
    background:#f8faf8;
}

.properties-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    transition:.3s;
}

.property-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 50px rgba(0,0,0,.11);
}

.property-image{
    width:100%;
    height:220px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.property-content{
    padding:25px;
}

.property-type{
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    background:#E8F5E9;
    color:#2E7D32;
    font-size:13px;
    font-weight:bold;
    margin-bottom:12px;
}

.property-content h3{
    margin:0 0 18px;
    font-size:21px;
}

.property-details{
    display:flex;
    flex-direction:column;
    gap:7px;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.property-price{
    margin:20px 0;
    font-size:18px;
    font-weight:bold;
    color:#2E7D32;
}

.no-properties{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.no-properties h3{
    margin-bottom:10px;
}

.no-properties p{
    color:#666;
    margin-bottom:20px;
}

@media(max-width:991px){

    .properties-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .properties-grid{
        grid-template-columns:1fr;
    }

}