
/* ==========================
   VIDEO PRELOADER OVERLAY
========================== */

#preloader{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#000;

    z-index:999999;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:
    opacity .6s ease,
    visibility .6s ease;
}

/* ==========================
   FULLSCREEN VIDEO
========================== */

#preloader-video{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* ==========================
   HIDE STATE
========================== */

#preloader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

/* ==========================
   MODERN HOMEPAGE HEADER
========================== */

.headerIndex{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.3);
    box-shadow:0 4px 20px rgba(0,0,0,.06);

    padding:8px 15px;
    box-sizing:border-box;
}

/* Space for fixed header */
body{
    padding-top:120px;
}


/* TOP ROW */
.header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:8px;
}


/* LOGO */

.brand-logo{
    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
}

.brand-text{
    font-size:1.3rem;
    font-weight:800;
    color:#0f172a;
    letter-spacing:.5px;
}

.brand-icon{
    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#0ea5e9,#2563eb);
    color:#fff;
    font-size:18px;

    box-shadow:0 5px 15px rgba(37,99,235,.3);
}


/* ACTION ICONS */

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.action-icon,
.share-btn .a2a_dd{
    width:40px;
    height:40px;

    display:flex !important;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;
    color:#334155;

    font-size:18px;
    cursor:pointer;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

    transition:.3s;
}

.action-icon:hover,
.share-btn .a2a_dd:hover{
    transform:translateY(-2px);
    background:#2563eb;
    color:#fff;
}


/* GOOGLE TRANSLATE */

.translator-row{
    margin-bottom:8px;
    display:flex;
    justify-content:flex-end;
}

#google_translate_element{
    transform:scale(.88);
    transform-origin:right center;
}


/* NAVIGATION */

.nav{
    width:100%;
}


/* SCROLL EFFECT */

.headerIndex.scrolled{
    padding:5px 15px;
    background:rgba(255,255,255,.96);
}


/* MOBILE */

@media(max-width:768px){

    body{
        padding-top:110px;
    }

    .brand-text{
        font-size:1rem;
    }

    .brand-icon{
        width:34px;
        height:34px;
    }

    .action-icon,
    .share-btn .a2a_dd{
        width:36px;
        height:36px;
        font-size:16px;
    }

    #google_translate_element{
        transform:scale(.75);
    }
}

/*===========================================*/
/*=====================================*/

.ad-panel{
    position:relative;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    margin:20px 0;
    margin-top:100px;
    border:1px solid #e8e8e8;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    animation:adFadeIn .4s ease;
}

/* Header */

.ad-panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    background:linear-gradient(135deg,#f8f9fa,#ffffff);
    border-bottom:1px solid #eee;
}

.ad-panel-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:700;
    color:#555;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.ad-panel-title i{
    color:#ff9800;
    font-size:18px;
}

/* Close Button */

.ad-close-btn{
    width:36px;
    height:36px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    color:#777;
    cursor:pointer;
    transition:.3s ease;
}

.ad-close-btn:hover{
    background:#ff4d4f;
    color:#fff;
    transform:rotate(90deg);
}

.ad-close-btn i{
    font-size:16px;
}

/* Body */

.ad-panel-body{
    padding:15px;
}

/* Entrance Animation */

@keyframes adFadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media(max-width:768px){

    .ad-panel{
        border-radius:12px;
        margin:15px 0;
        margin-top:150px;
    }

    .ad-panel-header{
        padding:10px 14px;
    }

    .ad-panel-body{
        padding:12px;
    }
}

/*=======================================*/
.modern-card-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom:8px;
}

.head-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.property-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    color:#fff;
    background:linear-gradient(135deg,#4facfe,#00f2fe);
    text-transform:uppercase;
    flex-shrink:0;
}

.head-text{
    overflow:hidden;
}

.property-title{
    font-size:16px;
    font-weight:700;
    margin:0;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.head-actions{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    color:#555;
}

.head-actions .closePost{
    font-size:22px;
    cursor:pointer;
    color:rgba(0,0,0,0.4);
    transition:0.2s;
}

.head-actions .closePost:hover{
    color:red;
    transform:scale(1.1);
}

.modern-description{
    padding:10px 14px;
    font-size:14px;
    line-height:1.5;
    color:#333;
    background:#fff;
    border-radius:0 0 14px 14px;
}

.see-more{
    display:inline-block;
    margin-top:6px;
    color:#007bff;
    cursor:pointer;
}

/*========================================*/


/*==========================================*/

.property-description{
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #333;
    text-align: left;

    /* Preserve spaces and line breaks */
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;

    /* Styling */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;

    /* Better readability */
    letter-spacing: 0.2px;
    margin-top: 15px;
}
@media (max-width:768px){
    .property-description{
        font-size: 15px;
        line-height: 1.8;
        padding: 18px;
    }
}

.property-description::first-letter{
    font-size: 1.4em;
    font-weight: 600;
}


/*===========================================*/

/*===============================*/

.animate-myDIV{
    color:#16a34a;
    animation:bounceArrow 1.5s infinite;
}

@keyframes bounceArrow{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(6px);
    }
}

/*=========================================*/
.property-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    padding:10px 0;
    font-size:13px;
    color:#666;
}

.meta-item{
    display:flex;
    align-items:center;
    gap:6px;
    background:#f8f9fa;
    padding:6px 12px;
    border-radius:50px;
    font-weight:500;
}

.meta-item i{
    color:#0d6efd;
    font-size:13px;
}

.location-group{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
}

.location-pill{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    border-radius:50px;
    text-decoration:none;
    background:rgba(13,110,253,.08);
    color:#333;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.location-pill:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-2px);
    text-decoration:none;
}

.location-pill i{
    font-size:12px;
}

.country-flag{
    width:20px;
    height:14px;
    border-radius:3px;
    object-fit:cover;
    box-shadow:0 1px 4px rgba(0,0,0,.15);
}
/*====================================={=={{======*/
.hiddenDIV{
    margin-top:15px;
}

.agent-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
}

.agent-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.agent-avatar .profile{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #0d6efd;
}

.avatar-placeholder{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
    color:#fff;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
}

.agent-info h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.agent-info a{
    text-decoration:none;
}

.agent-info small{
    color:#777;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:10px;
    background:#f8f9fa;
    padding:12px;
    border-radius:12px;
    margin-bottom:18px;
    color:#555;
}

.info-box i{
    color:#0d6efd;
    margin-top:3px;
}

.show-contact-btn{
    width:100%;
    border:none;
    border-radius:50px;
    padding:14px;
    background:linear-gradient(135deg,#0d6efd,#007bff);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.show-contact-btn:hover{
    transform:translateY(-2px);
}

.contacts{
    margin-top:20px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:12px;
    background:#f8f9fa;
    margin-bottom:10px;
}

.contact-item i{
    width:20px;
    text-align:center;
    color:#0d6efd;
    font-size:18px;
}

.contact-item.whatsapp i{
    color:#25D366;
}

.contact-item a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.website a{
    color:#0d6efd;
}

/*===============================================*/
/*==================================
      MODERN GLASS FOOTER
===================================*/

.ifh-footer{
    position: relative;
    width:100%;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #111827 50%,
            #1e293b 100%
        );

    color:#fff;
    overflow:hidden;
    margin-top:80px;
}

/* Decorative glow effects */

.ifh-footer::before,
.ifh-footer::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.12;
    pointer-events:none;
}

.ifh-footer::before{
    width:250px;
    height:250px;
    background:#3b82f6;
    top:-100px;
    left:-100px;
}

.ifh-footer::after{
    width:300px;
    height:300px;
    background:#06b6d4;
    bottom:-150px;
    right:-100px;
}


/*========================
    CONTAINER
=========================*/

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:70px 20px 50px;

    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:45px;

    position:relative;
    z-index:2;
}


/*========================
    COLUMNS
=========================*/

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column h3{
    position:relative;
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:10px;
    color:#fff;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:45px;
    height:3px;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            #3b82f6,
            #06b6d4
        );
}


/*========================
      LOGO
=========================*/

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:1.8rem;
    font-weight:800;
    margin-bottom:20px;

    color:#fff;
}

.footer-logo i{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

    box-shadow:
        0 10px 25px rgba(37,99,235,.3);
}


/*========================
    DESCRIPTION
=========================*/

.footer-description{
    line-height:1.9;
    color:rgba(255,255,255,.75);
    font-size:.96rem;
    max-width:320px;
}


/*========================
      LINKS
=========================*/

.footer-column a{
    position:relative;

    display:inline-block;

    width:fit-content;

    color:rgba(255,255,255,.75);
    text-decoration:none;

    margin-bottom:14px;
    padding-left:0;

    transition:.3s ease;
}

.footer-column a::before{
    content:"›";
    position:absolute;
    left:-14px;

    opacity:0;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
    transform:translateX(12px);
}

.footer-column a:hover::before{
    opacity:1;
}


/*========================
      BOTTOM AREA
=========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

    text-align:center;

    position:relative;
    z-index:2;

    max-width:1300px;
    margin:auto;
}

.footer-bottom p,
.footer-bottom span{
    color:rgba(255,255,255,.65);
    font-size:.92rem;
    margin:0;
}


/*========================
      HOVER CARDS
=========================*/

.footer-column{
    padding:20px;
    border-radius:20px;

    transition:.35s;
}

.footer-column:hover{
    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    transform:translateY(-6px);
}


/*========================
      RESPONSIVE
=========================*/

@media(max-width:768px){

    .footer-container{
        gap:30px;
        padding:55px 18px 40px;
    }

    .footer-logo{
        font-size:1.5rem;
    }

    .footer-bottom{
        flex-direction:column;
    }

    .footer-column{
        padding:15px;
    }

}

/*===========≠===============================*/
