﻿/*====================================================
            BUILD ESTATE - SERVICES PAGE
            Premium Luxury Theme
            Color : #d4ca68
====================================================*/

.page-services{
    font-family:'Poppins',sans-serif;
    overflow:hidden;
    background:#fff;
}

/*=====================================
            SECTION
======================================*/

.ftco-section{
    position:relative;
    padding:90px 0;
}

.ftco-section::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(212,202,104,.06);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.ftco-section::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(212,202,104,.04);
    border-radius:50%;
    bottom:-60px;
    left:-60px;
}

/*=====================================
            HERO
======================================*/

.services-hero{
    background:#faf9f2;
    padding:110px 0 80px;
}

.services-hero .heading-section{
    position:relative;
    z-index:5;
}

.services-hero .subheading{
    display:inline-block;
    color:#d4ca68;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services-hero h2{
    font-size:48px;
    font-weight:800;
    color:#1f2937;
    margin-bottom:20px;
    line-height:1.2;
}

.services-hero p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/*=====================================
        SERVICE GRID
======================================*/

.services-grid{
    margin-top:60px;
}

.services-grid>div{
    margin-bottom:30px;
}

/*=====================================
        SERVICE CARD
======================================*/

.service-card{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:40px 28px;
    text-align:center;
    height:100%;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid #efe8b3;
    box-shadow:0 15px 35px rgba(212,202,104,.15);
}

.service-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#d4ca68,#b8ae4f);
}

.service-card::after{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(212,202,104,.08);
    right:-70px;
    bottom:-70px;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(212,202,104,.35);
    border-color:#d4ca68;
}

.service-card:hover::after{
    transform:scale(1.4);
}

/*=====================================
            ICON
======================================*/

.service-card .icon{
    width:82px;
    height:82px;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#d4ca68,#b8ae4f);
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 30px rgba(212,202,104,.45);
    transition:.4s;
}

.service-card:hover .icon{
    transform:rotate(15deg) scale(1.1);
}

/*=====================================
            CONTENT
======================================*/

.service-copy{
    position:relative;
    z-index:2;
}

.service-copy h3{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.service-copy p{
    color:#666;
    line-height:1.9;
    font-size:15px;
}

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

.service-card:hover h3{
    color:#b8ae4f;
}

.service-card:hover p{
    color:#555;
}

/*=====================================
        BUTTONS
======================================*/

.btn-gold{
    display:inline-block;
    background:#d4ca68;
    color:#fff;
    padding:14px 36px;
    border-radius:50px;
    transition:.35s;
    text-decoration:none;
    font-weight:600;
}

.btn-gold:hover{
    background:#b8ae4f;
    color:#fff;
    text-decoration:none;
}

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

@media(max-width:1200px){

    .services-hero h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .services-hero{
        padding:90px 0 60px;
    }

    .services-hero h2{
        font-size:36px;
    }

    .service-card{
        padding:35px 25px;
    }

}

@media(max-width:767px){

    .ftco-section{
        padding:70px 0;
    }

    .services-hero h2{
        font-size:30px;
    }

    .services-hero p{
        font-size:15px;
    }

    .service-card{
        padding:30px 22px;
    }

    .service-card .icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .service-copy h3{
        font-size:22px;
    }

}