/*======================================
SERVICES PAGE
======================================*/

/* Banner */

.page-banner{

    position:relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;

    display: flex;
    align-items: center;
justify-content:center;
    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url("../../images/about.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.65) 40%,
            rgba(0,0,0,.25) 70%,
            rgba(0,0,0,.05) 100%
        );

    z-index:1;

    pointer-events:none;

}

.page-banner .hero-content{

     position: relative;
    z-index: 2;
    max-width:750px;

    text-align:center;
justify-content: center;
    margin:auto;

}

.page-banner h3{

    color:#C9A14A;
    letter-spacing:3px;
    margin-bottom:15px;

}

.page-banner h1{

    color: #fff;
    font-size: 72px;
    line-height: 1.1;
    margin: 25px 0 35px;

}

.page-banner p{

    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
    max-width:650px;
    margin:auto;

}


/* Introduction */

.service-intro{
    padding:100px 0;
    text-align:center;
    background:#fff;
}

.service-intro h5{
    color:#C9A14A;
    letter-spacing:3px;
}

.service-intro h2{
    font-size:48px;
    margin:20px 0;
    color:#111;
}

.service-intro p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

/*======================================
SERVICES LIST SECTION
======================================*/

.service-row{

    padding:10px 0 120px 0;

    background:#fff;

}

.service-row:nth-child(even){

    background:#FAF8F4;

}

.service-wrapper{

    display:grid;

    grid-template-columns:560px 1fr;

    gap:80px;

    align-items:center;

}

/* Reverse Layout */

.service-row.reverse .service-wrapper{

    grid-template-columns:1fr 560px;

}

.service-row.reverse .service-image{

    order:2;

}

.service-row.reverse .service-text{

    order:1;

}

/*======================================
IMAGE
======================================*/

.service-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

}

.service-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:24px;

    transition:.6s ease;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.service-image:hover img{

    transform:scale(1.06);

}

/*======================================
TEXT
======================================*/

.service-text{

    max-width:560px;

}

.service-text span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:72px;

    height:72px;

    border-radius:50%;

    border:2px solid rgba(196,143,46,.25);

    color:#C48F2E;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.service-text h2{

    font-size:40px;

    line-height:1.1;

    margin-bottom:22px;

    color:#111;

}

.service-text p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

/*======================================
FEATURE LIST
======================================*/

.service-text ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:40px;

    padding:0;

}

.service-text ul li{

    list-style:none;

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 8px;

    background:#F8F7F4;

    border:1px solid #ECECEC;

    border-radius:14px;

    color:#444;

    font-size:15px;

    font-weight:500;

    transition:.35s;

}

.service-text ul li::before{

    content:"✓";

    width:24px;

    height:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#C48F2E;

    color:#fff;

    font-size:12px;

    flex-shrink:0;

}

.service-text ul li:hover{

    transform:translateY(-4px);

    background:#111;

    color:#fff;

    border-color:#C48F2E;

}

/*======================================
BUTTON
======================================*/

.service-text .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border-radius:50px;

    background:#C48F2E;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.service-text .btn:hover{

    background:#111;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(196,143,46,.25);

}

/*======================================
DECORATIVE SHAPE
======================================*/

.service-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-60px;

    bottom:-60px;

    border-radius:50%;

    background:rgba(196,143,46,.08);

    z-index:-1;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

    .service-wrapper,
    .service-row.reverse .service-wrapper{

        grid-template-columns:1fr;

        gap:45px;

    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-text{

        order:unset;

    }

    .service-image img{

        height:420px;

    }

    .service-text{

        max-width:100%;

    }

    .service-text h2{

        font-size:40px;

    }

    .service-text ul{

        grid-template-columns:1fr;

    }

}

@media(max-width:767px){

    .service-row{

        padding:80px 0;

    }

    .service-image img{

        height:320px;

    }

    .service-text span{

        width:60px;

        height:60px;

        font-size:22px;

    }

    .service-text h2{

        font-size:34px;

    }

    .service-text p{

        font-size:16px;

    }

}

/*======================================
BOOKING PROCESS
======================================*/

.booking{

    padding:120px 0;

    background:#fff;

    text-align:center;

}

.booking h5{

    color:#C48F2E;

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.booking h2{

    color:#111;

    font-size:48px;

    margin-bottom:70px;

}

.booking-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.booking-card{

    position:relative;

    background:#fff;

    padding:45px 30px 35px;

    border-radius:24px;

    border:1px solid #ECECEC;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;

    overflow:hidden;

}

.booking-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#03474C,#C48F2E);

    transform:scaleX(0);

    transition:.35s;

}

.booking-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.booking-card:hover::before{

    transform:scaleX(1);

}

.booking-card span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:72px;

    height:72px;

    margin:0 auto 28px;

    border-radius:50%;

    background:#F8F7F4;

    border:2px solid rgba(196,143,46,.18);

    color:#C48F2E;

    font-size:26px;

    font-weight:700;

    font-family:var(--heading-font);

    transition:.35s;

}

.booking-card:hover span{

    background:#C48F2E;

    color:#fff;

    border-color:#C48F2E;

}

.booking-card h3{

    font-size:22px;

    color:#111;

    margin-bottom:10px;

    transition:.35s;

}

.booking-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

.booking-card:hover h3{

    color:#03474C;

}

/* Responsive */

@media(max-width:992px){

.service-row{
    grid-template-columns:1fr;
}

.service-row.reverse{
    direction:ltr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.booking-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.page-banner{
    height:auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-banner h1{
    font-size:38px;
}

.service-intro h2,
.why-services h2,
.booking h2,
.cta h2{
    font-size:32px;
}

.why-grid,
.booking-grid{
    grid-template-columns:1fr;
}

.cta-buttons{
    flex-direction:column;
    align-items:center;
}

.service-row{
    padding:70px 25px;
}
.service-intro {
    padding: 40px 0 0;
    text-align: center;
    background: #fff;
}
}
.hero-content p {
    margin-bottom:0 !important;
}