/* =====================================================
   FAST-LOCATION
   INDEX PAGE
===================================================== */

/* HERO SECTION */

.hero-section{
    position:relative;
    min-height:100vh;
    background:url('../images/placeholder/hero.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(15,61,94,.82),
        rgba(16,35,49,.88)
    );
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:.5px;
}

.hero-title{
    color:#fff;
    font-size:4rem;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-description{
    color:#f5f5f5;
    font-size:18px;
    max-width:700px;
    line-height:1.8;
}

/* SEARCH CARD */

.search-card{
    margin-top:40px;
    background:rgba(255,255,255,.95);
    padding:34px;
    border-radius:28px;
    box-shadow:0 35px 90px rgba(0,0,0,.15);
    border:1px solid rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
}

.search-card .form-control,
.search-card .form-select{
    height:62px;
    border-radius:16px;
    border:1px solid #e8e8e8;
    background:#fafafa;
    padding:0 20px;
    transition:border-color .35s ease, box-shadow .35s ease, background .35s ease;
    box-shadow:inset 0 1px 2px rgba(0,0,0,.04);
}

.search-card .form-control:focus,
.search-card .form-select:focus{
    border-color:rgba(212,177,90,.85);
    box-shadow:0 0 0 0.2rem rgba(212,177,90,.18);
    outline:none;
    background:#fff;
}

.search-card .form-select{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236a6a6a' d='M1.4 0L6 4.6 10.6 0l1.4 1.4L6 7.4 0 1.4z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:12px;
}

.btn-search{
    width:100%;
    height:62px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg, #D4B15A 0%, #F6D778 100%);
    color:#102331;
    font-weight:700;
    letter-spacing:.4px;
    box-shadow:0 20px 40px rgba(212,177,90,.25);
    transition:transform .35s ease, box-shadow .35s ease;
}

.btn-search:hover{
    transform:translateY(-3px);
    box-shadow:0 28px 55px rgba(212,177,90,.3);
}

@media (max-width:991.98px){
    .search-card{
        padding:26px;
    }

    .search-card .form-control,
    .search-card .form-select,
    .btn-search{
        height:56px;
    }
}

@media (max-width:575.98px){
    .search-card{
        padding:24px;
    }

    .search-card .form-control,
    .search-card .form-select,
    .btn-search{
        height:52px;
    }
}

/* STATISTICS */

.stats-section{
    padding:80px 0;
    background:#fff;
}

.stats-section .counter{
    font-size:48px;
    font-weight:800;
    color:var(--primary);
}

.stats-section p{
    font-size:16px;
    color:#666;
    margin-top:10px;
}

/* SECTION TITLE */

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
}

/* SERVICES */

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid #f1f1f1;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 40px rgba(0,0,0,.08);
}

.service-card i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

/* ABOUT */

.about-home{
    background:#f9fbfc;
}

.image-placeholder{
    height:500px;
    border-radius:25px;
    background:#ddd;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#888;
}

.image-placeholder img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.about-home h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.about-home p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

.about-home ul{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.about-home ul li{
    margin-bottom:12px;
    font-size:17px;
}

/* BUTTONS */

.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    margin-top:20px;
    transition:.4s;
}

.btn-primary-custom:hover{
    color:#fff;
    transform:translateY(-4px);
}

/* PROPERTIES */

.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-image{
    position:relative;
    overflow:hidden;
    height:250px;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.property-card:hover img{
    transform:scale(1.08);
}

.placeholder-property{
    width:100%;
    height:100%;
    background:#d9d9d9;
    display:flex;
    align-items:center;
    justify-content:center;
}

.badge-status{
    position:absolute;
    top:15px;
    right:15px;
    background:var(--secondary);
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    font-size:13px;
}

.property-content{
    padding:25px;
}

.property-content h5{
    font-weight:700;
    min-height:55px;
}

.property-content p{
    color:#777;
}

.property-content h4{
    color:var(--primary);
    font-weight:800;
    margin:15px 0;
}

.btn-view{
    width:100%;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    padding:12px;
}

.btn-view:hover{
    color:#fff;
}

/* ESTIMATE */

.estimate-card{
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #1f5c89
    );

    color:#fff;
    border-radius:25px;
    padding:50px;
    height:100%;
}

.estimate-card h3{
    font-size:32px;
    font-weight:700;
}

.estimate-card p{
    margin:20px 0;
}

/* ADVISOR */

.advisor-section{
    background:#f7f9fb;
    padding:100px 0;
}

.advisor-section h2{
    font-size:42px;
    font-weight:700;
}

.advisor-form{
    margin-top:40px;
}

.advisor-form .form-control{
    height:60px;
    border-radius:15px;
}

/* CITY LINKS */

.city-links{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.city-links a{
    background:#f5f5f5;
    color:#444;
    padding:12px 20px;
    border-radius:50px;
    transition:.3s;
}

.city-links a:hover{
    background:var(--primary);
    color:#fff;
}

/* TESTIMONIALS */

.testimonials{
    padding:100px 0;
    background:#f8fafc;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    margin:20px 0;
}

/* PARTNERS */

.partners-section{
    padding:100px 0;
}

.partners-section .col{
    background:#f5f5f5;
    padding:50px;
    border-radius:20px;
    margin:10px;
}

/* NEWSLETTER */

.newsletter-section{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #0b2f4b
    );

    color:#fff;
}

.newsletter-section h2{
    font-size:42px;
    margin-bottom:40px;
}

.newsletter-form .form-control{
    height:60px;
    border-radius:12px;
}

/* ANIMATION */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-title{
        font-size:2.8rem;
    }

    .section-title h2{
        font-size:32px;
    }

    .about-home h2{
        font-size:32px;
    }

    .advisor-section h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:2.2rem;
    }

    .search-card{
        padding:20px;
    }

    .stats-section .counter{
        font-size:36px;
    }

    .estimate-card{
        padding:35px;
    }

}