/* =====================================================
F21 PROPERTIES
LUXURY EDITORIAL DESIGN SYSTEM
===================================================== */

:root{

    /*--green:#203C28;*/
    
    --green: #1e4330;
    --green-dark:#16291C;

    --gold:#C2A177;

    --cream:#F8F6F1;

    --white:#FFFFFF;

    --text:#222222;

    --border:#E7E2D8;

}

/* =====================================================
RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--cream);

    color:var(--text);

    overflow-x:hidden;

    padding-top:70px;

}

a{
    text-decoration:none;
    color: var(--green);
}

img{
    display:block;
    max-width:100%;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

.container{

    width:100%;

    max-width:1400px;

    margin:auto;

    padding:0 40px;

}

/* =====================================================
TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:
    'Cormorant Garamond',
    serif;

    font-weight:600;

    margin:0;

}

.section-tag{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:12px;

    font-weight:600;

}

.section-title{

    color:var(--green);

    font-size:clamp(
        42px,
        4vw,
        72px
    );

    line-height:.95;

    margin-top:15px;

}

/* =====================================================
BUTTONS
===================================================== */

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    background:var(--green);

    color:var(--white);

    font-weight:600;

    transition:.35s;
}

.btn-primary-custom:hover{

    background:var(--green-dark);

    color:var(--white);

}

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.20);

    color:var(--white);

    transition:.35s;
}

.btn-outline-custom:hover{

    background:var(--white);

    color:var(--green);

}

/* =====================================================
HEADER
===================================================== */

.site-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:99999;

    transition:.35s ease;

    padding:15px 0;
    background: var(--green);

}

.site-header.scrolled{

    background:
    rgba(22,41,28,.92);

    backdrop-filter:
    blur(5px);

    border-bottom:
    1px solid rgba(255,255,255,.05);

}

.header-wrap{

    display:grid;

    grid-template-columns:
    220px
    1fr
    220px;

    align-items:center;

}

.site-logo{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.logo-main{

    font-family:
    'Cormorant Garamond',
    serif;

    color:var(--white);

    font-size:30px;

    font-weight:700;

}

.logo-sub{

    color:var(--gold);

    font-size:20px;

    letter-spacing:5px;

    text-transform:uppercase;

}

.main-navigation ul{

    display:flex;
    
    flex-direction: row;

    justify-content:center;

    gap:50px;

}

.main-navigation a{

    color:var(--white);

    font-size:15px;

    font-weight:500;

    position:relative;

}

.mmain-navigation a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.main-navigation a:hover::after{

    width:100%;

}

.header-actions{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

}

.header-cta{

    background:var(--gold);

    color:var(--green);

    padding:15px 26px;

    border-radius:60px;

    font-weight:600;

}

.mobile-menu-btn{

    display:none;

    border:none;

    background:none;

    color:#fff;

    font-size:28px;

}

/* =====================================================
MOBILE MENU
===================================================== */

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:var(--green);

    z-index:999999;

    transition:.4s ease;

    padding:120px 40px;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu li{

    margin-bottom:24px;

}

.mobile-menu a{

    color:var(--white);

    font-size:18px;

}

.mobile-close{

    position:absolute;

    top:25px;

    right:25px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;
}

.mobile-close:hover{

    background:var(--gold);

    color:var(--green);

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;
}

/* =====================================================
HERO
===================================================== */
.heroSwiper{

    /*min-height:100vh;*/

}

.hero-bg{

    content-visibility:auto;

}

.hero-slide{
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
}

.hero-slider{

    position:relative;
    margin-top: -50px;
}

.hero-slide{

    position:relative;

    min-height:100vh;

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(22,41,28,.72),
        rgba(22,41,28,.25)
    );

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:800px;
    padding-left: 30px;

}

.hero-tag{

    display:inline-flex;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:var(--gold);

    margin-bottom:28px;

}

.hero-content h1{

    font-size:
    clamp(
        60px,
        3.5vw,
        120px
    );

    line-height:.85;

    letter-spacing:1px;

    color:var(--white);

    margin-bottom:30px;

}

.hero-content p{

    max-width:800px;

    color:
    rgba(255,255,255,.90);

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-actions{

    display:flex;

    gap:18px;

}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:991px){

    body{
        padding-top:50px;
    }

    .main-navigation{
        display:none;
    }

    .header-cta{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .header-wrap{

        display:flex;

        justify-content:space-between;

    }

    .hero-slide{

        min-height:45vh;

    }

    .hero-content{

        text-align:center;

        margin:auto;

    }

    .hero-actions{

        justify-content:center;

    }

}

@media(max-width:767px){

    .container{

        padding:0 20px;

    }

    .logo-main{

        font-size:40px;

    }

    .hero-content h1{

        font-size:54px;

        line-height:.95;

        letter-spacing:-2px;

    }

    .hero-content p{

        font-size:16px;

        line-height:1.8;

    }

    .hero-actions{

        flex-direction:column;

    }

    .btn-primary-custom,
    .btn-outline-custom{

        width:100%;

    }
}

/* =====================================
PROPERTY CARD
===================================== */

.hero-property-card{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.15);

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 25px 80px rgba(0,0,0,.20);

}

.hero-property-image{

    height:280px;

    overflow:hidden;

}

.hero-property-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-property-content{

    padding:28px;

}

.hero-property-type{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

}

.hero-property-title{

    color:var(--white);

    font-size:34px;

    margin:12px 0;

}

.hero-property-location{

    color:
    rgba(255,255,255,.75);

    margin-bottom:20px;

}

.hero-property-price{

    color:var(--gold);

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-property-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:54px;

    border-radius:50px;

    background:var(--gold);

    color:var(--green);

    font-weight:600;

}

/* =====================================
SWIPER PAGINATION
===================================== */

.hero-pagination , .signature-pagination{

    position:absolute;

    bottom:50px !important;

    left:50% !important;

    transform:translateX(-2%);

    z-index:20;

}

.hero-pagination
.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.4;

}

.hero-pagination
.swiper-pagination-bullet-active{

    background:var(--gold);

    opacity:1;

}

@media(max-width:991px){

    .hero-showcase-bg{

        min-height:70vh;

        padding:120px 0 60px;

    }

    .hero-showcase-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero-content{

        text-align:center;

        max-width:100%;

    }

    .hero-content p{

        margin-left:auto;
        margin-right:auto;

    }

    .hero-actions{

        justify-content:center;

    }

    .hero-property-card{

        max-width:550px;

        margin:auto;

    }

}

@media(max-width:767px){

    .hero-showcase-bg{

        min-height:50vh;

        padding:120px 0 40px;

    }
    
    .hero-content {
        padding: 0;
    }

    .hero-content h1{

        font-size:36px;

        line-height:1;

        /*letter-spacing:-2px;*/

    }

    .hero-content p{

        font-size:16px;
        margin-bottom: 10px;

    }

    .hero-actions{

        flex-direction:column;

    }

    .hero-property-card{

        display:none;

    }

}

/* ===========================
SIGNATURE COLLECTION
=========================== */

.signature-property-section{

    padding:40px 0;

    background:var(--cream);

}

.luxury-heading{

    text-align:center;

    margin-bottom:60px;

}

.luxury-heading span{

    color:var(--gold);

    letter-spacing:4px;

    font-size:13px;

}

.luxury-heading h2{

    font-size:72px;

    color:var(--green);

    margin:15px 0;

}

.luxury-heading p{

    color:#666;

    max-width:600px;

    margin:auto;

}

.signature-card{

    border-radius:35px;

    overflow:hidden;

    position:relative;

}

.signature-card-image{

    height:350px;

    position:relative;

}

.signature-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.signature-card:hover img{

    transform:scale(1.08);

}

.signature-card-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    background:
    linear-gradient(
        to top,
        rgba(22,41,28,.92),
        rgba(22,41,28,.05)
    );

    padding:35px;

}

.signature-badge{

    position:absolute;

    top:25px;

    left:25px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    font-size:12px;

    letter-spacing:2px;

}

.property-type{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:10px;

}

.signature-card-content h3{

    color:#fff;

    font-size:42px;

    margin-bottom:10px;

}

.property-location{

    color:rgba(255,255,255,.85);

    margin-bottom:20px;

}

.signature-meta{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.signature-meta span{

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

}

.signature-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.signature-price{

    color:var(--gold);

    font-size:28px;

    font-weight:700;

}

.signature-btn{

    background:#fff;

    color:var(--green);

    padding:12px 24px;

    border-radius:50px;

    font-weight:600;

}

.property-actions{

    display:flex;

    align-items:center;

    gap:10px;

}

.signature-btn{

    height:60px;

    padding:0 30px;

    display:flex;

    align-items:center;

    justify-content:center;
    
    cursor: pointer;

}

.icon-btn{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.3s;
    cursor: pointer;
}

.call-btn{

    background:#143d27;

    color:#fff;
}

.call-btn:hover{

    transform:translateY(-3px);
}

.whatsapp-btn{

    background:#25D366;

    color:#fff;
}

.whatsapp-btn:hover{

    transform:translateY(-3px);
}

.enquiry-btn{

    background:var(--gold);

    color:var(--green);
}

.enquiry-btn:hover{

    transform:translateY(-3px);
}

@media(max-width:767px){

    .signature-card-image{

        height:360px;

    }

    .signature-card-overlay{

        padding:20px;

    }

    .signature-badge{

        top:15px;
        left:15px;

        padding:8px 14px;

        font-size:11px;
    }

    .signature-card-content h3{

        font-size:22px;

        line-height:1.1;

        margin-bottom:8px;
    }

    .property-location{

        font-size:13px;

        margin-bottom:12px;
    }

    .signature-meta{

        gap:8px;

        margin-bottom:15px;

        flex-wrap:wrap;
    }

    .signature-meta span{

        padding:6px 10px;

        font-size:12px;
    }

    .signature-footer{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;
    }

    .signature-price{

        font-size:24px;

        line-height:1;
    }

    .signature-btn{

        width:100%;

        text-align:center;

        justify-content:center;

        padding:10px 0;

        font-size:14px;
        
        height: 40px;
    }
    
    .hero-pagination {
        bottom: 0 !important;
    }
    
    .signature-pagination {
        display: none;
    }
    
    .icon-btn {
        width: 75px;
        height: 40px;
    }
    
    .hero-tag {
        margin-bottom: 15px;
        padding: 10px 22px;
        font-size: 14px;
    }

}

.search-section{

    padding:50px 0;
}

.search-card{

    background:#fff;

    border-radius:35px;

    padding:50px;

    border:1px solid rgba(194,161,119,.15);

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);

}

.search-header{

    margin-bottom:25px;
}

.search-header span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;

}

.search-header h2{

    color:var(--green);

    font-size:48px;
    line-height:1;
    margin-top:8px;

}

.search-grid{

    display:grid;

    grid-template-columns:
    1fr
    1fr
    1fr
    1fr
    180px;

    gap:20px;
    
    align-items: end;

}

.search-field label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:var(--green);

}

.search-field select{

    width:100%;
    font-weight:500;
    height:50px;

    border:1px solid var(--border);

    border-radius:18px;

    padding:0 15px;

    background:#fff;

}

.search-btn{

    height:64px;

    border:none;

    border-radius:18px;

    background:var(--green);

    color:#fff;

    font-weight:600;

}


.latest-properties-section{

    padding:40px 0;

    background:var(--cream);

}

.section-head{

    text-align:center;

    margin-bottom:60px;

}

.section-head span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

}

.section-head-wrap{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:20px;

    margin-bottom:50px;

}

.section-head-left .section-tag{

    display:block;

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-head-left h2{

    font-size:clamp(28px,4vw,60px);

    color:var(--green);

    line-height:1;

    margin:0;

}

.view-all-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 28px;

    border:1px solid var(--border);

    border-radius:60px;

    background:var(--white);

    color:var(--green);

    font-weight:600;

    transition:.3s ease;

}

.view-all-btn:hover{

    background:var(--gold);

    color:var(--cream);

    border-color:var(--gold);

    transform:translateY(-3px);

}

.view-all-btn i{

    transition:.3s ease;

}

.view-all-btn:hover i{

    transform:translateX(5px);

}

.section-head h2{

    color:var(--green);

    font-size:60px;

    margin-top:15px;

}

.property-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;

}

.listing-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

.listing-card:hover{

    transform:translateY(-10px);

}

.listing-image{

    position:relative;

    height:200px;

    overflow:hidden;

}

.listing-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.listing-card:hover img{

    transform:scale(1.08);

}

.listing-image::after{

    content:'';

    /*position:absolute;*/

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent
    );

}

.listing-badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:2;

    background:var(--gold);

    color:#fff;

    padding:5px 10px;

    border-radius:30px;

    font-size:11px;

    font-weight:500;

}

.wishlist-btn{

    position:absolute;

    top:15px;

    right:15px;

    z-index:2;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

}

.price-overlay{

    position:absolute;

    left:20px;

    bottom:20px;

    z-index:2;

    color:#fff;

    font-size:17px;

    font-weight:600;

}

.listing-content{

    padding:15px;

}

.property-area{

    color:var(--gold);

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:0px;

}

.listing-content h3{

    color:var(--green);

    font-size:18px;

    margin-bottom:5px;

}

.latest-property-location{

    color:#666;

    margin-bottom:7px;
    font-size: 13px;

}

.property-specs{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:10px;

    padding:5px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

    margin-bottom:7px;

}

.property-specs div{

    text-align:center;

    font-size:13px;

}

.property-specs strong{

    display:block;

    color:var(--green);

    font-size:13px;

}

.view-property-btn{
    font-size: 14px;
    display:block;

    width:100%;

    text-align:center;

    background:var(--gold);

    color:var(--green);

    padding:7px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:8px;

}

.latest-property-actions{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:10px;

}

.action-btn{

    height:30px;

    border:none;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;
    
    font-size: 14px;
    cursor: pointer;

}

.call{

    background:var(--green);

}

.whatsapp{

    background:#25D366;

}

.enquiry{

    background:#444;
}

@media(max-width:1200px){

    .property-grid{

        grid-template-columns:
        repeat(4,1fr);

    }

}

@media(max-width:992px){

    .property-grid{

        grid-template-columns:
        repeat(2,1fr) !important;

    }

}

@media(max-width:767px){

    .section-head h2{

        font-size:40px;

    }

    .property-grid{

        grid-template-columns:repeat(2,1fr) !important;

    }

}

/* ===========================
   LOCATIONS SECTION
=========================== */

.locations-section{

    padding:50px 0;
    background:#F8F6F1;
}

.locations-header{

    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:50px;
}

.locations-top{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    margin-bottom:50px;
}

.locations-subtitle{

    color:#C2A177;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.locations-title{

    font-size:60px;
    color:#203C28;
    line-height:.95;
}

.locations-tag {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.locations-view{

    color:#203C28;
    font-weight:600;
    transition:.3s;
}

.locations-view:hover{

    color:#C2A177;
}

.locations-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:30px;
}

.location-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    min-height:420px;
    display:block;
}

.location-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.location-card:hover img{
    transform:scale(1.08);
}

.location-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;

    background:
    linear-gradient(
        to top,
        rgba(22,41,28,.92) 0%,
        rgba(22,41,28,.55) 45%,
        rgba(22,41,28,.10) 100%
    );
}

.location-overlay h3{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#fff;
    margin-bottom:10px;
    line-height:1;
}

.location-overlay span{
    display:inline-block;
    width:max-content;

    color:var(--gold);

    text-transform:uppercase;
    letter-spacing:3px;

    font-size:13px;
    font-weight:600;

    padding:8px 16px;

    border-radius:30px;

    background:
    rgba(194,161,119,.15);

    border:
    1px solid rgba(194,161,119,.25);
}

.location-card:hover .location-overlay h3{
    color:var(--gold);
}

.locations-view-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 28px;

    border-radius:60px;

    background:#fff;

    color:var(--green);

    font-weight:600;

    border:1px solid rgba(194,161,119,.25);

    transition:.3s;
}

.locations-view-btn:hover{

    background:var(--green);

    color:#fff;

    transform:translateY(-2px);
}

@media(max-width:991px){

    .locations-grid{
        grid-template-columns:1fr 1fr;
    }

    .location-card{
        min-height:320px;
    }

    .location-overlay h3{
        font-size:34px;
    }
}

@media(max-width:767px){
    
    .section-head-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-all-btn {
        width: 100%;
    }

    .locations-grid{
        grid-template-columns:1fr;
    }
    
    .locations-title {
        font-size: 28px;
    }
    
    .locations-top{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;
    }

    .location-card{
        min-height:260px;
    }

    .location-overlay{
        padding:25px;
    }

    .location-overlay h3{
        font-size:30px;
    }

    .location-overlay span{
        font-size:11px;
        letter-spacing:2px;
    }
    
    .locations-view-btn{

        width:100%;

        justify-content:center;
    }
}

.why-f21-section{
    padding:50px 0;
    background:var(--cream);
}

.section-heading-center{
    text-align:center;
    margin-bottom:30px;
}

.section-heading-center span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
}

.section-heading-center h2{
    font-size:60px;
    color:var(--green);
    margin-top:15px;
    line-height:1;
}

.why-f21-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    border:1px solid rgba(194,161,119,.15);

    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.why-number{
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    color:var(--gold);
    margin-bottom:20px;
}

.why-card h3{
    color:var(--green);
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .why-f21-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .why-f21-grid{
        grid-template-columns:1fr;
    }

    .section-heading-center h2{
        font-size:42px;
    }

}

.developers-section{
    padding:50px 0 80px;
    background:var(--cream);
}

.developers-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.developer-card{
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--green);

    border:1px solid rgba(194,161,119,.15);

    border-radius:24px;

    color:var(--cream);

    font-weight:700;

    transition:.4s;
}

.developer-card:hover{

    background:var(--gold);

    color:var(--green);

    transform:translateY(-5px);

}

@media(max-width:991px){

    .developers-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:767px){

    .developers-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .developer-card{
        height:90px;
        font-size:14px;
    }

}

.testimonials-section{
    padding:80px 0;
    background:var(--green);
}

.testimonials-section .section-heading-center h2{
    color:#fff;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:40px;

    backdrop-filter:blur(10px);
}

.stars{
    color:var(--gold);
    font-size:24px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-card h4{
    color:#fff;
    margin-bottom:5px;
}

.testimonial-card span{
    color:var(--gold);
    font-size:14px;
}

@media(max-width:991px){

    .testimonials-grid{
        grid-template-columns:1fr;
    }

}

.testimonial-pagination{

    margin-top:40px;

    text-align:center;
}

.testimonial-pagination
.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.25;
}

.testimonial-pagination
.swiper-pagination-bullet-active{

    background:var(--gold);

    opacity:1;
}

.testimonial-card i{

    color:var(--gold);

    font-size:40px;

    margin-bottom:20px;
}

.blogs-section{

    padding:80px 0;

    background:var(--cream);
}

.blogs-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.blog-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);

    transition:.4s;
}

.blog-card:hover{

    transform:translateY(-8px);
}

.blog-image{

    height:280px;

    overflow:hidden;
}

.blog-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;
}

.blog-card:hover img{

    transform:scale(1.08);
}

.blog-content{

    padding:30px;
}

.blog-category{

    color:var(--gold);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.blog-content h3{

    color:var(--green);

    font-size:24px;

    margin:15px 0;
}

.blog-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

.blog-read-more{

    color:var(--green);

    font-weight:600;
}

@media(max-width:991px){

    .blogs-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:767px){

    .blogs-grid{

        grid-template-columns:1fr;
    }

}

/* ==================================
   FINAL CTA SECTION
================================== */

.cta-section{

    position:relative;

    padding:90px 0;

    background:
    url('../images/cta.avif')
    center center/cover no-repeat;

    overflow:hidden;
}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(22,41,28,.82),
        rgba(32,60,40,.82)
    );
}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    margin:auto;
}

.cta-content span{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

    margin-bottom:20px;
}

.cta-content h2{

    font-size:72px;

    color:#fff;

    line-height:.95;

    margin-bottom:25px;
}

.cta-content p{

    color:rgba(255,255,255,.85);

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    margin:auto auto 40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.cta-btn-primary{

    background:var(--gold);

    color:var(--green);

    padding:18px 34px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-primary:hover{

    transform:translateY(-3px);

    color:var(--green);
}

.cta-btn-secondary{

    background:transparent;

    color:#fff;

    border:1px solid rgba(255,255,255,.20);

    padding:18px 34px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-secondary:hover{

    background:#fff;

    color:var(--green);
}

@media(max-width:767px){

    .cta-section{

        padding:90px 0;
    }

    .cta-content h2{

        font-size:42px;
    }

    .cta-content p{

        font-size:16px;
    }

    .cta-buttons{

        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        width:100%;

        text-align:center;
    }
}

.footer{

    background:var(--green-dark);

    padding:90px 0 30px;

    color:#fff;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:60px;
}

.footer-logo{

    display:flex;

    flex-direction:column;

    line-height:1;
}

.footer-logo .logo-main{

    font-size:30px;

    color:#fff;

    font-family:
    'Cormorant Garamond',
    serif;

    font-weight:700;
}

.footer-logo .logo-sub{

    color:var(--gold);

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:20px;
}

.footer-about{

    margin-top:20px;

    color:
    rgba(255,255,255,.75);

    line-height:1.9;
}

.footer-col h4{

    color:var(--gold);

    margin-bottom:25px;

    font-size:20px;
}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-col li{

    margin-bottom:14px;

    color:
    rgba(255,255,255,.75);
}

.footer-col a{

    color:
    rgba(255,255,255,.75);

    transition:.3s;
}

.footer-col a:hover{

    color:var(--gold);
}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;
}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;
}

.footer-social a:hover{

    background:var(--gold);

    color:var(--green);
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:
    rgba(255,255,255,.55);
}

@media(max-width:991px){

    .footer-grid{

        grid-template-columns:
        1fr 1fr;

        gap:40px;
    }
}

@media(max-width:767px){

    .footer-grid{

        grid-template-columns:
        1fr;
    }

    .footer{

        padding:70px 0 25px;
    }

    .footer-logo .logo-main{

        font-size:48px;
    }
}




.latest-properties{

    padding:120px 0;

}

.properties-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}

.property-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);

}

.property-card:hover{

    transform:translateY(-8px);

}

.property-card-image{

    height:280px;

    overflow:hidden;

}

.property-card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;

}

.property-card:hover img{

    transform:scale(1.08);

}

.property-card-content{

    padding:22px;

}

.property-card-title{

    color:var(--green);

    font-size:28px;

    margin:10px 0;

}

.property-card-location{

    color:#777;

    margin-bottom:15px;

}

.property-card-price{

    color:var(--green);

    font-size:24px;

    font-weight:700;

}

@media(max-width:1200px){

    .properties-grid{
        grid-template-columns:
        repeat(3,1fr);
    }

}

@media(max-width:991px){

    .search-grid{
        grid-template-columns:
        1fr 1fr;
    }

    .lifestyle-grid{
        grid-template-columns:1fr;
    }

    .properties-grid{
        grid-template-columns:
        repeat(2,1fr) !important;
    }

}

@media(max-width:767px){

    .search-grid{
        grid-template-columns:1fr;
    }

    .properties-grid{
        grid-template-columns:1fr;
    }

    .featured-property-image{
        height:180px;
    }

    .lifestyle-card{
        height:420px;
    }

}

.property-showcase{
    padding:40px 0 80px;
}

.property-showcase-image{
    margin-bottom:60px;
}

.property-showcase-image img{
    width:100%;
    height:70vh;
    min-height:600px;
    object-fit:cover;
    border-radius:40px;
    display:block;
}

.property-showcase-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.property-showcase-type{
    display:inline-block;
    padding:12px 24px;
    background:var(--gold);
    color:#fff;
    border-radius:40px;
    margin-bottom:25px;
}

.property-showcase-content h1{
    font-size:90px;
    line-height:.9;
    color:var(--green);
    margin-bottom:25px;
}

.property-showcase-location{
    font-size:22px;
    color:#555;
    margin-bottom:30px;
}

.property-showcase-price{
    font-size:22px;
    color:#777;
    margin-bottom:30px;
}

.property-showcase-price span{
    display:block;
    margin-top:10px;
    font-size:64px;
    color:var(--green);
    font-weight:700;
}

.property-showcase-status{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.property-showcase-status span{
    padding:12px 22px;
    border:1px solid #ddd;
    border-radius:40px;
    background:#fff;
}

.property-showcase-meta{
    display:flex;
    justify-content:center;
    gap:80px;
    margin-bottom:40px;
}

.property-showcase-meta label{
    display:block;
    color:#888;
    margin-bottom:6px;
}

.property-showcase-meta strong{
    color:var(--green);
}

.property-showcase-actions{
    display:flex;
    justify-content:center;
    gap:15px;
}

@media(max-width:991px){

    .property-showcase-content h1{
        font-size:52px;
    }

    .property-showcase-price span{
        font-size:42px;
    }

    .property-showcase-meta{
        flex-direction:column;
        gap:20px;
    }

    .property-showcase-actions{
        flex-direction:column;
        align-items:center;
    }

    .property-showcase-image img{
        min-height:350px;
        height:45vh;
    }
}

.property-summary-bar{
    margin-top:-50px;
    position:relative;
    z-index:5;
}

.summary-grid{
    background:#fff;
    border-radius:30px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.summary-item{
    text-align:center;
}

.summary-item span{
    display:block;
    font-size:14px;
    color:#777;
    margin-bottom:10px;
}

.summary-item strong{
    color:var(--green);
    font-size:22px;
}

@media(max-width:991px){

    .summary-grid{
        grid-template-columns:1fr 1fr;
    }

}

.property-overview{
    padding:50px 0;
}

.overview-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    margin-top:20px; 
}

@media(max-width:991px){

    .overview-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .overview-card{
        padding:25px;
    }

}

@media(max-width:767px){

    .section-heading h2{
        font-size:42px;
        line-height:1.1;
    }

}

.overview-card{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.overview-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.overview-card li{
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.property-details-tabs{
    padding:50px 0;
}

.tabs-nav{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:20px 0;
    justify-content:center;
}

.tab-btn{
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    border-radius:50px;
    padding:14px 28px;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover{
    transform:translateY(-2px);
}

.tab-btn.active{
    background:var(--green);
    color:#fff;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

.config-grid,
.amenities-grid,
.connectivity-grid,
.floorplan-grid,
.gallery-grid{
    display:grid;
    gap:25px;
}

.config-grid{
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
}

.amenities-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(190px,1fr));
    gap:25px;
    margin-top:40px;
}

.amenity-card{
    background:#fff;
    border-radius:30px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(0,0,0,.05);
}

.amenity-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 50px rgba(0,0,0,.08);
}

.amenity-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f6f3ed;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.amenity-icon i{
    font-size:26px;
    color:var(--gold);
}

.amenity-card h4{
    color:var(--green);
    font-size:18px;
    line-height:1.5;
}

.connectivity-grid{
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
}

.floorplan-grid{
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
}

.gallery-grid{
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
}

.section-heading span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
}

.section-heading h2{
    font-size:60px;
    color:var(--green);
    margin-top:15px;
    line-height:1;
}

.config-card{
    background:#fff;
    border-radius:32px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.35s;
    border:1px solid rgba(0,0,0,.06);
}

.config-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.config-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--gold);
}

.config-card h3{
    font-size:34px;
    color:var(--green);
    margin-bottom:25px;
}

.config-area{
    font-size:18px;
    color:#666;
    margin-bottom:15px;
}

.config-price{
    font-size:34px;
    font-weight:700;
    color:var(--green);
    margin-bottom:25px;
}

.connect-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    border-left:5px solid var(--gold);
}

.connect-card h4{
    color:var(--green);
    margin-bottom:10px;
}

.connect-card span{
    color:#777;
}

.floorplan-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.35s;
}

.floorplan-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.floorplan-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.floorplan-card h4{
    padding:5px;
    color:var(--green);
}

.gallery-grid{
    columns:3;
    column-gap:20px;
}

.gallery-grid a{
    display:block;
    margin-bottom:20px;
}

.gallery-grid img{
    width:100%;
    border-radius:24px;
    display:block;
    transition:.35s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

@media(max-width:768px){

    .gallery-grid{
        columns:2;
    }

}

.related-properties{
    padding:50px 0;
}

.related-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:30px;
    margin-top:30px;
}

.related-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.35s;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.related-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.related-content{
    padding:30px;
}

.related-location{
    color:#777;
    margin-bottom:12px;
}

.related-content h3{
    color:var(--green);
    margin-bottom:15px;
}

.related-price{
    color:var(--gold);
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

@media(max-width:991px){

    .related-grid{
        grid-template-columns:1fr;
    }

}

.sticky-enquiry-bar{
    position:fixed;
    right:25px;
    bottom:0;
    transform:translateY(-50%);
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sticky-btn{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    border:none;
    cursor:pointer;
    color:#fff;
    transition:.3s;
}

.sticky-btn:hover{
    transform:translateY(-4px);
}

.sticky-btn i{
    font-size:20px;
    margin-bottom:6px;
}

.sticky-btn span{
    font-size:12px;
}

.sticky-btn.call{
    background:#123d28;
}

.sticky-btn.whatsapp{
    background:#25d366;
}

.sticky-btn.enquiry{
    background:#c7a36d;
}

@media(max-width:991px){

    .sticky-enquiry-bar{
        /*display:none;*/
    }

}

.mobile-property-bar{
    display:none;
}

@media(max-width:991px){

.mobile-property-bar{

    display:grid;
    grid-template-columns:1fr 1fr 1fr;

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    z-index:999;

    background:#fff;

    box-shadow:
    0 -5px 20px rgba(0,0,0,.08);
}

.mobile-property-bar a,
.mobile-property-bar button{

    padding:18px;

    border:none;

    text-align:center;

    text-decoration:none;

    color:#fff;
}

.mobile-property-bar a:first-child{
    background:#123d28;
}

.mobile-property-bar a:nth-child(2){
    background:#25d366;
}

.mobile-property-bar button{
    background:#c7a36d;
}

}

.enquiry-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.enquiry-modal.active{
    display:flex;
}

.enquiry-modal-box{
    width:100%;
    max-width:650px;
    background:#fff;
    border-radius:35px;
    padding:50px;
    position:relative;
}

.close-enquiry{
    position:absolute;
    top:20px;
    right:20px;
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
}

.enquiry-modal-content{
    text-align:center;
}

.enquiry-modal-content span{
    color:var(--gold);
    letter-spacing:4px;
    font-size: 12px;
}

.enquiry-modal-content h2{
    margin:0px 0 15px;
    color:var(--green);
    font-size: 22px;
}

.enquiry-modal .form-group{
    margin-bottom:15px;
}

.enquiry-modal input,
.enquiry-modal textarea, select{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size: 12px;
}

.floorplan-content{
    padding:20px;
    text-align:center;
}

.floorplan-content h4{
    color:var(--green);
    margin-bottom:8px;
}

.floorplan-content span{
    color:#888;
    font-size:14px;
}

.property-share{
    display:flex;
    /*justify-content:center;*/
    align-items:center;
    gap:15px;
    /*margin:40px 0;*/
}

.property-share span{
    color:var(--green);
    font-weight:600;
}

.property-share a,
.property-share button{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.property-share a:hover,
.property-share button:hover{
    transform:translateY(-3px);
}

.property-video-section{
    padding:50px 0;
}

.property-video-wrap{
    overflow:hidden;
    border-radius:35px;
    margin-top:50px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.property-video-wrap iframe{
    width:100%;
    height:650px;
    border:none;
    display:block;
}

@media(max-width:991px){

    .property-video-wrap iframe{
        height:320px;
    }

}

.properties-hero{
    text-align:center;
    padding:80px 0 50px;
}

.properties-hero h1 {
    font-size: 60px;
    color: var(--green);
}

.properties-filter-bar{
    margin-bottom:60px;
}

.filter-row{
    background:#fff;
    border-radius:24px;
    padding:20px;
    display:grid;
    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        auto;
    gap:15px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}

.filter-row input,
.filter-row select{
    height:56px;
    border-radius:14px;
}

.filter-row button{
    height:56px;
    padding:0 30px;
    border:none;
    border-radius:14px;
    background:var(--gold);
    color:var(--green);
    font-weight:600;
}

.results-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.sort-dropdown{
    width:220px;
}

@media(max-width:991px){

    .filter-row{
        grid-template-columns:1fr;
    }

    .property-grid{
        grid-template-columns:
        repeat(2,1fr) !important;
    }

}

.pagination-wrap{
    margin:30px 0 50px;
    display:flex;
    justify-content:center;
}

.pagination{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;
}

.pagination li{
    list-style:none;
}

.pagination a,
.pagination span{
    width:50px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    padding:0 18px;
    background:#fff;
    border:1px solid #e5e5e5;
    color:var(--green);
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.pagination a:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--green);
}

.pagination .active span,
.pagination .active a{
    background:var(--green);
    color:#fff;
    border-color:var(--green);
}

.active-filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.filter-chip{
    background: var(--green);
    color: var(--cream);
    border-radius:30px;
    padding:10px 18px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.filter-chip span{
    cursor:pointer;
    font-weight:700;
}

.empty-properties{
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:30px;
}

.empty-properties i{
    font-size:60px;
    margin-bottom:20px;
    color:var(--gold);
}

.empty-properties h3{
    margin-bottom:10px;
}

.results-count {
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 10px;
}

.property-grid.loading{
    opacity:.7;
}

.skeleton-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    animation:pulse 1.5s infinite;
}

.skeleton-image{
    height:260px;
    background:#ececec;
}

.skeleton-content{
    padding:20px;
}

.skeleton-line{
    height:14px;
    background:#ececec;
    border-radius:20px;
    margin-bottom:12px;
}

.skeleton-line.large{
    height:24px;
    width:80%;
}

.skeleton-line.medium{
    width:60%;
}

.skeleton-line.small{
    width:40%;
}

@keyframes pulse{

    0%{
        opacity:.6;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:.6;
    }

}

/* ==========================
   HERO
========================== */

.locations-hero{
    padding:80px 0 0px;
    text-align:center;
}

.hero-tag{
    /*display: inline-block; */
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    font-weight: 600;
}

.locations-hero h1{
    font-size:60px;
    line-height:1.05;
    color:var(--green);
    margin-bottom:0px;
}

.locations-hero p{
    /*max-width:800px;*/
    /*margin:auto;*/
    /*font-size:20px;*/
    /*line-height:1.8;*/
    /*color:#666;*/
}

/* ==========================
   GRID
========================== */

.locations-section{
    padding-bottom:120px;
}

.locations-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:35px;
}

/* ==========================
   CARD
========================== */

.location-card{
    position:relative;
    display:block;
    height:560px;
    overflow:hidden;
    border-radius:32px;
    text-decoration:none;
}

.location-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s ease;
}

.location-card:hover img{
    transform:scale(1.08);
}

.location-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:40px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.55),
        rgba(0,0,0,0)
    );

    color:#fff;
}

.location-label{
    display:inline-block;

    padding:8px 16px;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:
    blur(10px);

    border-radius:30px;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;
}

.location-overlay h3{
    font-size:42px;
    margin-bottom:12px;
}

.location-overlay p{
    font-size:18px;
    opacity:.9;
    margin-bottom:25px;
}

.location-link{
    display:inline-flex;
    align-items:center;
    gap:12px;

    color:var(--gold);

    font-weight:600;

    transition:.3s;
}

.location-card:hover
.location-link{
    gap:18px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .locations-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .locations-hero h1{
        font-size:58px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .locations-grid{
        grid-template-columns:1fr;
    }

    .locations-hero{
        padding:80px 0 50px;
    }

    .locations-hero h1{
        font-size:40px;
    }

    .locations-hero p{
        font-size:16px;
    }

    .location-card{
        height:420px;
    }

    .location-overlay h3{
        font-size:30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.location-detail-hero{
    height:700px;
    position:relative;
    overflow:hidden;
    border-radius:0 0 40px 40px;
}

.location-detail-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;

    background:
    rgba(0,0,0,.45);
}

.location-stats{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border-radius:28px;
    padding:35px 25px;
    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;

    border:1px solid rgba(201,169,110,.15);
}

.stat-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.stat-card h3{
    font-size:42px;
    color:var(--cream);
    margin-bottom:8px;
    line-height:1;
}

.stat-card span{
    color:var(--cream);
    font-size:15px;
    letter-spacing:.5px;
}

.investment-highlights{
    padding:50px 0;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-card{
    background:#fff;
    padding:40px 30px;
    border-radius:30px;

    text-align:center;

    transition:.4s ease;

    border:1px solid rgba(201,169,110,.15);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.highlight-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);
}

.icon-wrap{
    width:80px;
    height:80px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #d8b17c
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-wrap i{
    color:#fff;
    font-size:28px;
}

.highlight-card h3{
    color:var(--green);
    margin-bottom:15px;
    font-size:24px;
}

.highlight-card p{
    color:#777;
    line-height:1.8;
}

.location-about{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:32px;
    box-shadow:
    0 25px 70px rgba(0,0,0,.12);
}

.about-grid h2{
    font-size:58px;
    color:var(--green);
    margin-bottom:25px;
}

.about-grid p{
    font-size:18px;
    line-height:2;
    color:#555;
}

.cta-box{
    background:var(--green);
    color:#fff;
    padding:80px;
    border-radius:40px;
    text-align:center;
}

@media(max-width:991px){

    .stats-grid,
    .highlights-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .stats-grid,
    .highlights-grid{
        grid-template-columns:1fr;
    }

    .about-grid h2{
        font-size:38px;
    }

}

.location-properties, .related-locations {
    padding: 80px 0;
}

.location-cta {
    padding: 40px 0 80px;
}

.location-about-content{
    position:relative;
}

.about-content{
    overflow:hidden;
    transition:max-height .5s ease;
}

.about-content.collapsed{
    max-height:180px;
}

.about-content.expanded{
    max-height:2000px;
}

.read-more-btn{
    margin-top:25px;

    background:none;
    border:none;

    color:var(--gold);

    font-weight:600;

    cursor:pointer;

    font-size:16px;
}

.read-more-btn:hover{
    opacity:.8;
}

.featured-project-banner{
    margin-top:-50px;
    position:relative;
    z-index:20;
}

.featured-banner{
    background:
    linear-gradient(
        135deg,
        var(--green),
        #1f4639
    );

    border-radius:32px;

    padding:45px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#fff;

    box-shadow:
    0 30px 70px rgba(0,0,0,.15);
}

.featured-content span{
    color:var(--gold);
    letter-spacing:3px;
    font-size:12px;
}

.featured-content h2{
    color:#fff;
    margin:10px 0;
    font-size:38px;
}

.featured-price{
    color:var(--gold);
    font-size:22px;
    font-weight:700;
}

.featured-btn{
    padding:18px 30px;

    background:var(--gold);

    color:var(--green);

    border-radius:60px;

    text-decoration:none;

    font-weight:700;
}

.about-hero{
    padding:90px 0 40px;
    text-align:center;
}

.about-hero h1{
    max-width:900px;
    margin:20px auto;
    font-size:72px;
    line-height:1.1;
    color:var(--green);
}

.about-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#666;
}

.about-story{
    padding:120px 0 40px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.about-content h2{
    font-size:54px;
    color:var(--green);
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:20px;
    line-height:2;
}

.mission-section{
    padding:100px 0;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.why-f21{
    padding:40px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.why-card i{
    font-size:40px;
    color:var(--gold);
    margin-bottom:20px;
}

.about-stats{
    padding:120px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:var(--green);
    color:#fff;
    text-align:center;
    padding:40px;
    border-radius:30px;
}

.stat-card h2{
    color:var(--gold);
    font-size:52px;
}

.about-cta{
    padding:20px 0 80px;
}

.cta-box{
    background:linear-gradient(
        135deg,
        var(--green),
        #1f4639
    );

    border-radius:40px;

    padding:80px;

    text-align:center;

    color:#fff;
}

@media(max-width:991px){

    .about-grid,
    .mission-grid,
    .why-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:42px;
    }

}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1100px;
    margin:80px auto 0;
}

.hero-stats div{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.hero-stats h3{
    font-size:42px;
    color:var(--gold);
}

.about-image img{
    width:100%;
    border-radius:30px;

    box-shadow:
    0 40px 80px rgba(0,0,0,.15);

    transition:.4s;
}

.about-image img:hover{
    transform:translateY(-10px);
}

.mission-card{
    text-align: center;
    background:#fff;

    border:1px solid #e7e2d9;

    border-radius:30px;

    padding:50px;

    /*min-height:280px;*/

    transition:.4s;
}

.mission-card:hover{
    transform:translateY(-10px);
}

.why-card{
    min-height:240px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.1);
}

.our-process{
    padding:80px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:#fff;

    padding:40px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.process-card span{
    font-size:60px;
    color:var(--gold);
    font-weight:700;
}

.cta-box:before{
    content:'';

    position:absolute;

    width:400px;
    height:400px;

    right:-100px;
    top:-100px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);
}

.contact-hero{
    padding:90px 0 90px;
    text-align:center;
}

.contact-hero h1{
    font-size:60px;
    line-height:1.1;
    color:var(--green);
    /*max-width:900px;*/
    margin:20px auto;
}

.contact-hero p{
    /*max-width:700px;*/
    margin:auto;
    line-height:1.9;
}

.contact-info-section{
    padding-bottom:100px;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:20px;
}

.contact-main-section{
    padding-bottom:120px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-content h2{
    font-size:54px;
    color:var(--green);
    margin:20px 0;
}

.contact-actions{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.contact-action-btn{
    padding:16px 28px;
    border-radius:50px;
    text-decoration:none;
    background:var(--green);
    color:#fff;
}

.contact-action-btn.whatsapp{
    background:#25d366;
}

.contact-form-wrap{
    background:#fff;
    padding:50px;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form-wrap input,
.contact-form-wrap textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:15px;
    margin-bottom:20px;
}

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:var(--gold);
    color:var(--green);
    font-weight:700;
    cursor:pointer;
}

.contact-map{
    margin-bottom:120px;
}

@media(max-width:991px){

    .contact-grid,
    .contact-cards{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:42px;
    }

    .contact-actions{
        flex-direction:column;
    }

}

.contact-cta {
    padding: 0 0 80px;
}

.error-page{
    min-height:80vh;

    display:flex;
    align-items:center;

    text-align:center;

    padding:120px 0;
}

.error-page span{
    letter-spacing:4px;
    color:var(--gold);
}

.error-page h1{
    font-size:84px;

    line-height:1.1;

    color:var(--green);

    margin:25px 0;
}

.error-page p{
    max-width:700px;

    margin:0 auto 40px;

    line-height:2;
}

.error-actions{
    display:flex;

    justify-content:center;

    gap:20px;
}

.secondary-btn{
    padding:18px 32px;

    border:1px solid var(--green);

    border-radius:50px;

    text-decoration:none;

    color:var(--green);
}

.inner-page-hero{
    padding:180px 0 100px;
    text-align:center;
}

.inner-page-hero h1{
    font-size:72px;
    color:var(--green);
    margin:15px 0;
}

.inner-page-hero p{
    max-width:700px;
    margin:auto;
}

.legal-section{
    padding:100px 0;
}

.legal-content{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.06);
    line-height:2;
}

.legal-content h2{
    color:var(--green);
    margin-top:40px;
    margin-bottom:15px;
}

.legal-content h3{
    color:var(--green);
    margin-top:25px;
}

.legal-content hr{
    margin:40px 0;
}

.thank-you-section{
    padding:100px 0;
}

.thank-you-card{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:80px;
    border-radius:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.thank-icon{
    font-size:90px;
    color:#22c55e;
    margin-bottom:25px;
}

.thank-you-card h1{
    font-size:48px;
    color:var(--green);
    margin:20px 0;
}

.thank-you-card p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:2;
}

.thank-actions{
    display:flex;
    justify-content:center;
    gap:20px;
}

.secondary-btn{
    padding:16px 32px;
    border:1px solid var(--green);
    border-radius:50px;
    text-decoration:none;
    color:var(--green);
}

.blog-hero{
    padding:180px 0 120px;
    text-align:center;
}

.blog-hero h1{
    font-size:60px;
    line-height:1.1;
    color:var(--green);
    /*max-width:1100px;*/
    margin:20px auto;
}

.blog-hero p{
    /*max-width:750px;*/
    margin:auto;
    line-height:2;
}

.blog-search{
    max-width:700px;
    margin:50px auto 0;
    display:flex;
    background:#fff;
    border-radius:70px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.blog-search input{
    flex:1;
    border:none;
    outline:none;
    padding:22px 30px;
}

.blog-search button{
    width:80px;
    border:none;
    background:var(--green);
    color:#fff;
}

.featured-blog{
    padding-bottom:120px;
}

.featured-blog-card{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:0;
    background:#fff;
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    text-decoration:none;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-content{
    padding:70px;
}

.featured-label{
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
}

.featured-content h2{
    font-size:48px;
    line-height:1.2;
    margin:20px 0;
    color:var(--green);
}

.featured-content p{
    line-height:2;
}

.read-more-btn{
    margin-top:30px;
    font-weight:600;
    color:var(--green);
}

.latest-blogs{
    padding-bottom:120px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:54px;
    color:var(--green);
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.blog-content{
    padding:30px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    font-size:13px;
    color:#777;
}

.blog-content h3{
    margin-bottom:15px;
}

.blog-content h3 a{
    text-decoration:none;
    color:var(--green);
    line-height:1.4;
}

.blog-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.blog-read-more{
    text-decoration:none;
    color:var(--gold);
    font-weight:600;
}

.empty-blogs{
    text-align:center;
    padding:100px 0;
}

.empty-blogs i{
    font-size:70px;
    color:var(--gold);
    margin-bottom:20px;
}

.blog-cta{
    padding-bottom:120px;
}

.blog-cta-box{
    background:
    linear-gradient(
        135deg,
        var(--green),
        #1b4738
    );

    color:#fff;

    padding:100px;

    border-radius:40px;

    text-align:center;
}

.blog-cta-box h2{
    font-size:56px;
    max-width:900px;
    margin:20px auto;
}

.blog-cta-box p{
    max-width:700px;
    margin:auto;
    line-height:2;
    margin-bottom:35px;
}

@media(max-width:991px){

    .featured-blog-card{
        grid-template-columns:1fr;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-hero h1{
        font-size:46px;
    }

    .featured-content{
        padding:40px;
    }

    .featured-content h2{
        font-size:32px;
    }

    .blog-cta-box{
        padding:60px 30px;
    }

    .blog-cta-box h2{
        font-size:38px;
    }
} 

.sitemap-hero{
    padding:130px 0 70px;
    text-align:center;
}

.sitemap-hero h1{
    font-size:72px;
    line-height:1.1;
    max-width:900px;
    margin:20px auto;
    color:var(--green);
}

.sitemap-hero p{
    max-width:700px;
    margin:auto;
}

.sitemap-directory{
    padding-bottom:120px;
}

.directory-nav{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:80px;
}

.directory-nav a{
    background:#fff;
    padding:30px;
    border-radius:24px;
    text-decoration:none;
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-weight:600;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.3s;
}

.directory-nav a:hover{
    transform:translateY(-6px);
}

.directory-nav i{
    color:var(--gold);
    margin-right:10px;
}

.directory-nav span{
    background:var(--green);
    color:#fff;
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.directory-section{
    margin-bottom:100px;
}

.directory-heading{
    text-align:center;
    margin-bottom:40px;
}

.directory-heading span{
    display:block;
    color:var(--gold);
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.directory-heading h2{
    font-size:56px;
    color:var(--green);
}

.directory-heading small{
    font-size:24px;
    color:#888;
}

.directory-links{
    display:grid;
    gap:16px;
}

.two-column{
    grid-template-columns:repeat(3,1fr);
}

.three-column{
    grid-template-columns:repeat(4,1fr);
}

.directory-links a{
    background:#fff;
    border-radius:16px;
    padding:18px 22px;
    text-decoration:none;
    color:var(--green);
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.3s;
    border:1px solid rgba(0,0,0,.04);
}

.directory-links a:hover{
    transform:translateX(8px);
    border-color:var(--gold);
}

@media(max-width:991px){

    .directory-nav{
        grid-template-columns:1fr;
    }

    .two-column,
    .three-column{
        grid-template-columns:1fr;
    }

    .sitemap-hero h1{
        font-size:44px;
    }

    .directory-heading h2{
        font-size:38px;
    }
}

/* ==================================
   Desktop Dropdown
================================== */

.nav-item.dropdown{
    position:relative;
}

.nav-item.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-item.dropdown > a::after{
    content:"\f107";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:11px;
    transition:.3s;
}

.nav-item.dropdown:hover > a::after{
    transform:rotate(180deg);
}

.nav-item.dropdown .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:260px;
    max-width:260px;

    background:#fff;

    padding:12px 0;

    border:none;
    border-radius:16px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:9999;

    /* IMPORTANT */
    display:flex !important;
    flex-direction:column !important;
    gap:0 !important;
}

.nav-item.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-item.dropdown .dropdown-menu li{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    list-style:none;
}

.nav-item.dropdown .dropdown-menu li a{
    display:block;
    width:100%;

    padding:14px 22px;

    color:var(--green);

    text-decoration:none;

    white-space:nowrap;

    transition:.3s;
}

.nav-item.dropdown .dropdown-menu li a:hover{
    background:
        rgba(212,176,122,.10);

    color:var(--gold);

    padding-left:28px;
}

/* ==================================
   Mobile Dropdown
================================== */

.mobile-submenu{
    display:none;
    padding-left:15px;
    margin-top:10px;
}

.mobile-submenu.active{
    display:block;
}

.mobile-submenu li{
    margin:0;
}

.mobile-submenu a{
    font-size:14px;
    opacity:.85;
}

.mobile-dropdown-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.property-v3{
    padding:40px 0 80px;
}

.property-v3-grid{
    display:grid;
    grid-template-columns:
        minmax(0,1fr)
        360px;

    gap:50px;
}

.property-banner{
    position:relative;
    height:700px;
    overflow:hidden;
    border-radius:30px;
}

.property-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.75)
    );
}

.banner-content{
    position:absolute;
    left:50px;
    bottom:100px;
    z-index:2;
}

.banner-badges{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.banner-badges span{
    background:
        rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:10px 18px;

    border-radius:50px;
}

.banner-content h1{
    color:#fff;

    font-size:68px;

    line-height:1.05;

    margin-bottom:15px;
}

.banner-location{
    color:#fff;
    font-size:18px;
}

.quick-facts-strip{
    display:grid;
    grid-template-columns:
        repeat(4,1fr);

    gap:20px;

    margin-top:-60px;

    position:relative;

    z-index:5;
}

.fact-item{
    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.fact-item span{
    display:block;
    color:var(--gold);
    margin-bottom:10px;
}

.property-overview-v3{
    margin-top:70px;
}

.section-label{
    color:#c7a56c;

    letter-spacing:3px;

    font-size:12px;

    margin-bottom:10px;
}

.property-overview-v3 h2{
    font-size:48px;
    margin-bottom:30px;
}

.overview-content{
    font-size:18px;
    line-height:2;
}

.property-sidebar-v3{
    position:sticky;
    top:120px;
    height:fit-content;
}

.consultant-card-v3{
    background:#fff;

    border-radius:30px;

    padding:30px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);
}

.consultant-header{
    display:flex;
    gap:15px;
    align-items:center;
}

.consultant-header img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.price-box{
    margin:25px 0;
}

.price-box h3{
    font-size:38px;
}

.consult-btn{
    width:100%;
    border:none;
    border-radius:12px;
    padding:15px;
    margin-bottom:12px;
    font-weight:600;
}

.consult-btn.call{
    background:#0f3d2e;
    color:#fff;
}

.consult-btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.consult-btn.visit{
    background:#d4b07a;
    color:#fff;
}

.section-heading-v3{
    margin-bottom:40px;
}

.section-heading-v3 span{
    color:#c7a56c;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:12px;
}

.section-heading-v3 h2{
    font-size:48px;
    margin-top:12px;
}

.configurations-v3,
.amenities-v3,
.floorplans-v3{
    padding-top:90px;
}

.configuration-card{
    display:grid;

    grid-template-columns:
        1fr
        auto
        auto;

    gap:30px;

    align-items:center;

    padding:35px;

    border-radius:24px;

    border:1px solid #ececec;

    margin-bottom:18px;

    transition:.3s;
}

.configuration-card:hover{
    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.06);
}

.configuration-left h3{
    font-size:26px;
    margin-bottom:10px;
}

.configuration-left span{
    color:#777;
}

.configuration-price{
    font-size:28px;
    font-weight:700;
}

.configuration-btn{
    border:none;

    background:#0f3d2e;

    color:#fff;

    padding:14px 24px;

    border-radius:12px;
}

.amenities-grid-v3{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;
}

.amenity-item-v3{
    text-align:center;

    padding:30px;

    border:1px solid #ececec;

    border-radius:24px;

    transition:.3s;
}

.amenity-item-v3:hover{
    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.06);
}

.amenity-circle{
    width:70px;
    height:70px;

    border-radius:50%;

    background:#f8f5ef;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;
}

.amenity-circle i{
    color:#c7a56c;
}

.floorplan-grid-v3{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:25px;
}

.floorplan-item-v3{
    position:relative;

    overflow:hidden;

    border-radius:28px;

    display:block;
}

.floorplan-item-v3 img{
    width:100%;
    height:350px;

    object-fit:cover;

    transition:.5s;
}

.floorplan-item-v3:hover img{
    transform:scale(1.08);
}

.floorplan-info{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    color:#fff;
}

.gallery-v3,
.connectivity-v3,
.map-section-v3,
.video-section-v3{
    padding-top:90px;
}

.gallery-grid-v3{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:25px;
}

.gallery-card-v3{
    overflow:hidden;
    border-radius:28px;
    display:block;
}

.gallery-card-v3 img{
    width:100%;
    height:320px;

    object-fit:cover;

    transition:.5s;
}

.gallery-card-v3:hover img{
    transform:scale(1.08);
}

.connectivity-list-v3{
    display:grid;
    gap:18px;
}

.connectivity-row-v3{
    display:flex;

    gap:20px;

    padding:28px;

    border-radius:22px;

    border:1px solid #ececec;
}

.connectivity-icon{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#f8f5ef;

    display:flex;
    align-items:center;
    justify-content:center;
}

.connectivity-icon i{
    color:#c7a56c;
}

.map-box-v3{
    overflow:hidden;
    border-radius:28px;
}

.map-box-v3 iframe{
    width:100%;
    height:650px;
    border:none;
}

.video-box-v3{
    overflow:hidden;

    border-radius:28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}

.video-box-v3 iframe{
    width:100%;
    height:650px;
}

.premium-cta-v3{
    margin-top:100px;
}

.premium-cta-inner{
    background:#0f3d2e;

    color:#fff;

    padding:90px;

    border-radius:36px;

    text-align:center;
}

.premium-cta-inner span{
    letter-spacing:3px;
    color:#d4b07a;
}

.premium-cta-inner h2{
    font-size:56px;
    margin:20px 0;
}

.premium-cta-inner p{
    max-width:700px;
    margin:auto;
    font-size:18px;
}

.premium-cta-btn{
    margin-top:30px;

    background:#d4b07a;

    color:#fff;

    border:none;

    padding:18px 40px;

    border-radius:14px;

    font-size:16px;
}

.related-properties-v4{
    padding:100px 0;
}

.related-grid-v4{
    display:grid;
    grid-template-columns:
        repeat(3,1fr);

    gap:30px;
}

.related-card-v4{
    overflow:hidden;

    border-radius:28px;

    background:#fff;

    box-shadow:
        0 20px 60px rgba(0,0,0,.06);

    transition:.4s;
}

.related-card-v4:hover{
    transform:translateY(-8px);
}

.related-image-v4{
    position:relative;
}

.related-image-v4 img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.related-overlay{
    position:absolute;
    left:20px;
    bottom:20px;

    background:#fff;

    padding:10px 18px;

    border-radius:12px;

    font-weight:700;
}

.related-content-v4{
    padding:25px;
}

.share-property-v4{
    background:#d4b07a;
}

/* =========================================
   LARGE TABLET
========================================= */
@media (max-width:1200px){

    .property-v3-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .property-sidebar-v3{
        position:relative;
        top:0;
    }

    .amenities-grid-v3{
        grid-template-columns:repeat(3,1fr);
    }

    .floorplan-grid-v3{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid-v3{
        grid-template-columns:repeat(2,1fr);
    }

    .related-grid-v4{
        grid-template-columns:repeat(2,1fr);
    }

    .banner-content h1{
        font-size:56px;
    }

    .property-overview-v3 h2,
    .section-heading-v3 h2{
        font-size:42px;
    }

    .premium-cta-inner h2{
        font-size:46px;
    }
}


/* =========================================
   TABLET
========================================= */
@media (max-width:991px){

    .property-banner{
        height:550px;
    }

    .banner-content{
        left:30px;
        right:30px;
        bottom:50px;
    }

    .banner-content h1{
        font-size:42px;
    }

    .banner-location{
        font-size:16px;
    }

    .quick-facts-strip{
        grid-template-columns:repeat(2,1fr);
        margin-top:40px;
    }

    .property-overview-v3{
        margin-top:50px;
    }

    .property-overview-v3 h2,
    .section-heading-v3 h2{
        font-size:36px;
    }

    .overview-content{
        font-size:16px;
        line-height:1.9;
    }

    .configuration-card{
        grid-template-columns:1fr;
        text-align:center;
        gap:20px;
    }

    .configuration-price{
        font-size:24px;
    }

    .amenities-grid-v3{
        grid-template-columns:repeat(2,1fr);
    }

    .floorplan-grid-v3{
        grid-template-columns:1fr;
    }

    .gallery-grid-v3{
        grid-template-columns:1fr;
    }

    .related-grid-v4{
        grid-template-columns:1fr;
    }

    .connectivity-row-v3{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .map-box-v3 iframe,
    .video-box-v3 iframe{
        height:450px;
    }

    .premium-cta-inner{
        padding:60px 35px;
    }

    .premium-cta-inner h2{
        font-size:38px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width:767px){

    .property-v3{
        padding:50px 0 60px;
    }

    .property-banner{
        height:420px;
        border-radius:20px;
    }

    .banner-content{
        left:20px;
        right:20px;
        bottom:25px;
    }

    .banner-badges{
        flex-wrap:wrap;
        gap:8px;
    }

    .banner-badges span{
        padding:8px 14px;
        font-size:12px;
    }

    .banner-content h1{
        font-size:30px;
        line-height:1.2;
    }

    .banner-location{
        font-size:14px;
    }

    .quick-facts-strip{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .fact-item{
        padding:20px;
        border-radius:16px;
    }

    .property-overview-v3,
    .configurations-v3,
    .amenities-v3,
    .floorplans-v3,
    .gallery-v3,
    .connectivity-v3,
    .map-section-v3,
    .video-section-v3{
        padding-top:60px;
    }

    .property-overview-v3 h2,
    .section-heading-v3 h2{
        font-size:28px;
        line-height:1.3;
    }

    .section-label,
    .section-heading-v3 span{
        letter-spacing:2px;
        font-size:11px;
    }

    .overview-content{
        font-size:15px;
        line-height:1.8;
    }

    .consultant-card-v3{
        padding:20px;
        border-radius:20px;
    }

    .consultant-header{
        flex-direction:column;
        text-align:center;
    }

    .consultant-header img{
        width:60px;
        height:60px;
    }

    .price-box h3{
        font-size:28px;
    }

    .configuration-card{
        padding:20px;
        border-radius:18px;
    }

    .configuration-left h3{
        font-size:22px;
    }

    .amenities-grid-v3{
        grid-template-columns:repeat(2, 1fr);
    }

    .amenity-item-v3{
        padding:25px;
    }

    .amenity-circle{
        width:60px;
        height:60px;
    }

    .floorplan-item-v3 img{
        height:250px;
    }

    .gallery-card-v3 img{
        height:250px;
    }

    .connectivity-row-v3{
        padding:20px;
        border-radius:18px;
    }

    .map-box-v3,
    .video-box-v3{
        border-radius:20px;
    }

    .map-box-v3 iframe,
    .video-box-v3 iframe{
        height:320px;
    }

    .premium-cta-v3{
        margin-top:60px;
    }

    .premium-cta-inner{
        padding:40px 20px;
        border-radius:24px;
    }

    .premium-cta-inner h2{
        font-size:28px;
        line-height:1.3;
    }

    .premium-cta-inner p{
        font-size:15px;
    }

    .premium-cta-btn{
        width:100%;
        padding:15px;
    }

    .related-properties-v4{
        padding:60px 0;
    }

    .related-content-v4{
        padding:20px;
    }

    .related-image-v4 img{
        height:220px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width:480px){

    .banner-content h1{
        font-size:26px;
    }

    .property-overview-v3 h2,
    .section-heading-v3 h2{
        font-size:24px;
    }

    .premium-cta-inner h2{
        font-size:24px;
    }

    .fact-item{
        padding:18px;
    }

    .configuration-btn,
    .consult-btn{
        width:100%;
    }
}  

/*======================================
EMI CALCULATOR HERO
======================================*/

.calculator-hero{

    position:relative;

    padding:120px 0 80px;

    background:
    linear-gradient(
        135deg,
        var(--green),
        #0d2f30
    );

    text-align:center;

    overflow:hidden;
}

.calculator-hero::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(198,162,74,.15),
        transparent 40%
    );
}

.calculator-hero span{

    display:inline-block;

    padding:10px 20px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    color:var(--gold);

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:25px;
}

.calculator-hero h1{

    color:#fff;

    font-size:58px;

    margin-bottom:20px;

    font-weight:800;
}

.calculator-hero p{

    max-width:700px;

    margin:auto;

    color:rgba(255,255,255,.8);

    font-size:18px;

    line-height:1.8;
}

/*======================================
SECTION
======================================*/

.calculator-section{

    padding:80px 0;

    background:#f8f8f8;
}

.calculator-layout{

    display:grid;

    grid-template-columns:
    1fr 450px;

    gap:40px;

    align-items:start;
}

/*======================================
CARDS
======================================*/

.calculator-card,
.result-card,
.chart-card,
.emi-faq-section{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.04);
}

.calculator-card h3,
.result-card h3{

    font-size:24px;

    margin-bottom:30px;

    color:var(--green);
}

/*======================================
FORM
======================================*/

.form-group{

    margin-bottom:35px;
}

.form-group label{

    display:block;

    font-size:11px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.range-value{

    margin-top:12px;

    font-size:18px;

    font-weight:700;

    color:var(--gold);
}

/*======================================
SLIDER
======================================*/

input[type="range"]{

    width:100%;

    appearance:none;

    height:8px;

    border-radius:20px;

    background:#e5e7eb;

    outline:none;
}

input[type="range"]::-webkit-slider-thumb{

    appearance:none;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--gold);

    cursor:pointer;

    border:4px solid #fff;

    box-shadow:
    0 5px 20px rgba(198,162,74,.5);
}

/*======================================
BUTTON
======================================*/

.calculate-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:var(--gold);

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.calculate-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 30px rgba(198,162,74,.35);
}

/*======================================
RESULTS
======================================*/

.result-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

    border-bottom:1px solid #eee;
}

.result-item:last-child{

    border-bottom:none;
}

.result-item label{

    color:#666;

    font-size:15px;
}

.result-item strong{

    color:var(--green);

    font-size:24px;

    font-weight:800;
}

/*======================================
CHART
======================================*/

.chart-card canvas{

    max-width:450px;

    margin:auto;
}

/*======================================
FINANCE STATS LOOK
======================================*/

.result-card{

    position:sticky;

    top:120px;
}

.result-card::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:
    linear-gradient(
        90deg,
        var(--gold),
        #f5d47b
    );

    border-radius:
    24px 24px 0 0;
}

/*======================================
MOBILE
======================================*/

@media(max-width:991px){

.calculator-layout{

    grid-template-columns:1fr;
}

.result-card{

    position:relative;

    top:auto;
}

.calculator-hero h1{

    font-size:40px;
}

}

@media(max-width:768px){

.calculator-section{

    padding:50px 0;
}

.calculator-card,
.result-card,
.chart-card{

    padding:25px;
}

.calculator-hero{

    padding:80px 0 60px;
}

.calculator-hero h1{

    font-size:32px;
}

.calculator-hero p{

    font-size:15px;
}

.result-item{

    flex-direction:column;

    align-items:flex-start;

    gap:10px;
}

.result-item strong{

    font-size:22px;
}

}

/*======================================
RESULT DASHBOARD
======================================*/

.result-header{

    margin-bottom:25px;
}

.result-header span{

    display:inline-block;

    color:var(--gold);

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;
}

.result-header h3{

    margin:0;

    color:var(--green);

    font-size:28px;
}

.emi-highlight{

    padding:25px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        var(--green),
        #0d2f30
    );

    margin-bottom:25px;
}

.emi-highlight label{

    display:block;

    color:rgba(255,255,255,.7);

    margin-bottom:10px;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;
}

.emi-highlight h2{

    color:#fff;

    margin:0;

    font-size:42px;

    font-weight:800;
}

.finance-stats{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;
}

.finance-stat{

    padding:18px;

    border-radius:16px;

    background:#f8f8f8;

    border:1px solid #ececec;

    transition:.3s;
}

.finance-stat:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.finance-stat label{

    display:block;

    font-size:12px;

    color:#777;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.finance-stat strong{

    display:block;

    color:var(--green);

    font-size:18px;

    font-weight:800;

    line-height:1.4;
}

@media(max-width:768px){

.finance-stats{

    grid-template-columns:1fr;
}

.emi-highlight h2{

    font-size:32px;
}

}

/*======================================
FAQ SECTION
======================================*/

.emi-faq-section{

    padding:90px 0;

    background:#fff;
    margin-top: 40px;
}

.faq-wrapper{

    max-width:1000px;

    margin:auto;
}

.faq-item{

    margin-bottom:15px;

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    border:1px solid #ececec;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.faq-question{

    width:100%;

    border:none;

    background:none;

    padding:25px 30px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:18px;

    font-weight:700;

    color:var(--green);

    text-align:left;
}

.faq-question i{

    color:var(--gold);

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s ease;
}

.faq-answer p{

    padding:0 30px 25px;

    margin:0;

    line-height:1.8;

    color:#666;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-item.active .faq-question i{

    transform:rotate(45deg);
}

@media(max-width:768px){

.faq-question{

    padding:20px;

    font-size:15px;
}

.faq-answer p{

    padding:0 20px 20px;
}

}

.calculator-content-section{

    padding:90px 0;
}

.content-card{

    background:#fff;

    padding:50px;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.content-card h2{

    color:var(--green);

    margin-bottom:25px;
}

.content-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;
}

.recommendation-box{

    margin-top:25px;

    padding:25px;

    border-radius:18px;

    background:#f8f8f8;

    border:1px solid #ececec;
}

.recommendation-box h3{

    color:var(--green);

    margin-bottom:12px;
}

.recommendation-box p{

    color:#666;

    line-height:1.8;

    margin:0;
}

.comparison-insights{

    padding:80px 0;
}

.insights-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.insight-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.insight-card h3{

    color:var(--green);

    margin-bottom:20px;
}

.insight-card ul{

    margin:0;
    padding-left:20px;
}

.insight-card li{

    margin-bottom:12px;

    line-height:1.8;
}

@media(max-width:768px){

.insights-grid{

    grid-template-columns:1fr;
}

}

 .owners-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    radial-gradient(
        circle at top left,
        rgba(198,162,74,.18),
        transparent 40%
    ),
    #0f3d3e;
}

.owners-hero-content{
    max-width:750px;
}

.owners-hero span{
    color:var(--gold);
    letter-spacing:3px;
    text-transform:uppercase;
}

.owners-hero h1{
    font-size:72px;
    line-height:1;
    color:#fff;
    margin:25px 0;
}

.owners-hero p{
    font-size:18px;
    color:rgba(255,255,255,.75);
    max-width:650px;
}

.owners-cta{
    margin-top:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 35px;
    background:var(--gold);
    color:#fff;
    border-radius:10px;
}

.owners-problems{

    padding:120px 0;

    background:#fff;
}

.problems-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.problem-card{

    position:relative;

    padding:40px;

    background:#fff;

    border-radius:24px;

    border:1px solid #eee;

    overflow:hidden;

    transition:.4s;
}

.problem-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

.problem-number{

    font-size:70px;

    font-weight:800;

    color:
    rgba(198,162,74,.15);

    line-height:1;

    margin-bottom:20px;
}

.problem-card h3{

    font-size:28px;

    line-height:1.2;

    color:var(--green);

    margin-bottom:20px;
}

.problem-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.problem-card ul{

    margin:0;

    padding-left:18px;
}

.problem-card li{

    margin-bottom:12px;

    color:#444;
}

@media(max-width:991px){

.problems-grid{

    grid-template-columns:1fr;
}

.problem-card{

    padding:30px;
}

.problem-card h3{

    font-size:24px;
}

}

.owners-process{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #0f3d3e,
        #062324
    );

    position:relative;

    overflow:hidden;
}

.owners-process .section-heading-center h2,
.owners-process .section-heading-center p{

    color:#fff;
}

.process-timeline{

    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:25px;

    position:relative;
}

.process-timeline::before{

    content:'';

    position:absolute;

    left:0;

    right:0;

    top:50px;

    height:2px;

    background:
    rgba(198,162,74,.3);
}

.process-step{

    position:relative;

    text-align:center;

    z-index:2;
}

.step-number{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;
}

.process-step h3{

    color:#fff;

    font-size:20px;

    margin-bottom:12px;
}

.process-step p{

    color:
    rgba(255,255,255,.75);

    font-size:14px;

    line-height:1.8;
}

@media(max-width:991px){

.process-timeline{

    grid-template-columns:1fr;
}

.process-timeline::before{

    display:none;
}

.process-step{

    background:
    rgba(255,255,255,.05);

    padding:25px;

    border-radius:20px;
}

}

.owners-audience{

    padding:120px 0;

    background:#f8f8f8;
}

.audience-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.audience-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    transition:.4s;

    border:1px solid #eee;
}

.audience-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.audience-card.featured{

    background:
    linear-gradient(
        135deg,
        #0f3d3e,
        #08292a
    );

    color:#fff;
}

.audience-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    margin-bottom:25px;
}

.audience-card h3{

    margin-bottom:18px;

    font-size:30px;
}

.audience-card p{

    line-height:1.9;

    margin-bottom:25px;
}

.audience-card ul{

    margin:0;

    padding-left:18px;
}

.audience-card li{

    margin-bottom:12px;
}

@media(max-width:991px){

.audience-grid{

    grid-template-columns:1fr;
}

.audience-card{

    padding:30px;
}

}

.owners-stats{

    padding:120px 0;

    background:#fff;
}

.stats-layout{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}

.stats-content span{

    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;
}

.stats-content h2{

    font-size:54px;

    color:var(--green);

    margin:20px 0;
}

.stats-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;
}

.reasons-list{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;
}

.reason-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;
}

.reason-item i{

    color:var(--gold);
}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;
}

.stat-card{

    background:#f8f8f8;

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.4s;
}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.stat-card h3{

    font-size:52px;

    color:var(--gold);

    margin-bottom:10px;
}

.stat-card p{

    margin:0;

    color:#555;

    font-weight:600;
}

@media(max-width:991px){

.stats-layout{

    grid-template-columns:1fr;

    gap:50px;
}

.reasons-list{

    grid-template-columns:1fr;
}

.stats-grid{

    grid-template-columns:1fr;
}

.stats-content h2{

    font-size:38px;
}

}

.owners-case-studies{

    padding:120px 0;

    background:#f8f8f8;
}

.case-study-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.case-study-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid #eee;

    transition:.4s;
}

.case-study-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.case-tag{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:
    rgba(198,162,74,.12);

    color:var(--gold);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;
}

.case-study-card h3{

    color:var(--green);

    margin-bottom:15px;
}

.case-study-card p{

    color:#666;

    line-height:1.8;
}

.case-result{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid #eee;

    line-height:1.8;
}

@media(max-width:991px){

.case-study-grid{

    grid-template-columns:1fr;
}

}

.owners-consultation{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #0f3d3e,
        #072425
    );
}

.consultation-wrapper{

    display:grid;

    grid-template-columns:
    1fr 520px;

    gap:60px;

    align-items:center;
}

.consultation-content span{

    color:var(--gold);

    letter-spacing:2px;
}

.consultation-content h2{

    color:#fff;

    font-size:60px;

    margin:20px 0;
}

.consultation-content p{

    color:
    rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:35px;
}

.consult-benefits{

    display:grid;

    gap:15px;
}

.consult-benefits div{

    color:#fff;

    display:flex;

    gap:12px;

    align-items:center;
}

.consult-benefits i{

    color:var(--gold);
}

.consultation-form-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.2);
}

.consultation-form-card label{

    display:block;

    margin-bottom:8px;

    font-weight:600;
}

.consultation-form-card input,
.consultation-form-card select,
.consultation-form-card textarea{

    width:100%;

    height:54px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;
}

.consultation-form-card textarea{

    height:auto;

    padding:15px;
}

.consult-submit-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:10px;

    background:var(--gold);

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;
}

@media(max-width:991px){

.consultation-wrapper{

    grid-template-columns:1fr;
}

.consultation-content h2{

    font-size:40px;
}

.consultation-form-card{

    padding:25px;
}

}

.owners-cta-banner{

    padding:80px 0;

    background:var(--gold);
}

.cta-banner-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

.cta-banner-inner h2{

    color:#fff;

    margin-bottom:10px;
}

.cta-banner-inner p{

    color:rgba(255,255,255,.9);

    margin:0;
}

.cta-banner-btn{

    min-width:240px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:10px;

    background:#fff;

    color:var(--green);

    font-weight:700;
}

.owners-final-cta{

    padding:140px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0f3d3e,
        #072425
    );
}

.owners-final-cta span{

    color:var(--gold);

    letter-spacing:3px;
}

.owners-final-cta h2{

    color:#fff;

    font-size:72px;

    max-width:900px;

    margin:25px auto;
}

.owners-final-cta p{

    max-width:750px;

    margin:auto;

    color:
    rgba(255,255,255,.75);

    line-height:1.9;
}

.developer-consultation-form{

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.08);
}

.consult-form-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;
}

.consult-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #d8b45f
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;
}

.consult-form-header h3{

    margin:0;

    color:var(--green);

    font-size:30px;
}

.consult-form-header p{

    margin-top:5px;

    color:#777;
}

.form-section-title{

    font-size:22px;

    font-weight:700;

    color:var(--green);

    margin-bottom:20px;
}

.consult-radio-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-bottom:30px;
}

.consult-radio-card{

    position:relative;

    padding:25px;

    border:2px solid #eee;

    border-radius:20px;

    cursor:pointer;

    transition:.3s;
}

.consult-radio-card:hover{

    border-color:var(--gold);

    transform:translateY(-5px);
}

.consult-radio-card input{

    position:absolute;

    top:20px;

    right:20px;

    transform:scale(1.4);
}

.consult-radio-card h4{

    margin-bottom:10px;

    color:var(--green);
}

.consult-radio-card p{

    margin:0;

    color:#666;

    font-size:14px;

    line-height:1.7;
}

.form-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;
}

.developer-consultation-form label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--green);
}

.developer-consultation-form input[type="text"],
.developer-consultation-form input[type="email"],
.developer-consultation-form input[type="tel"],
.developer-consultation-form select,
.developer-consultation-form textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:14px;

    padding:15px 18px;

    transition:.3s;

    background:#fafafa;
}

.developer-consultation-form input:focus,
.developer-consultation-form select:focus,
.developer-consultation-form textarea:focus{

    outline:none;

    border-color:var(--gold);

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(198,162,74,.15);
}

.checkbox-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin-bottom:30px;
}

.checkbox-grid label{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px;

    border:1px solid #eee;

    border-radius:12px;

    background:#fafafa;

    cursor:pointer;
}

.checkbox-grid input{

    width:18px;

    height:18px;
}

.consent-box{

    margin-top:25px;

    margin-bottom:25px;

    padding:20px;

    border-radius:15px;

    background:#fafafa;

    border:1px solid #eee;
}

.consent-box label{

    display:flex;

    gap:12px;

    align-items:flex-start;

    line-height:1.8;

    font-weight:400;
}

.consult-submit-btn{

    width:100%;

    height:65px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #d8b45f
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    cursor:pointer;

    transition:.3s;
}

.consult-submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(198,162,74,.35);
}

.developer-consultation-form hr{

    margin:35px 0;

    border:none;

    border-top:1px solid #eee;
}

@media(max-width:991px){

.consult-radio-grid{

    grid-template-columns:1fr;
}

.form-grid{

    grid-template-columns:1fr;
}

.checkbox-grid{

    grid-template-columns:1fr;
}

.developer-consultation-form{

    padding:25px;
}

.consult-form-header{

    flex-direction:column;

    text-align:center;
}

.consult-form-header h3{

    font-size:24px;
}

}

.consult-radio-card:has(input:checked){

    border-color:var(--gold);

    background:
    linear-gradient(
        135deg,
        rgba(198,162,74,.08),
        rgba(198,162,74,.02)
    );

    box-shadow:
    0 15px 35px rgba(198,162,74,.12);
}