/*==============================
SERVICE INTRO
==============================*/

.serviceIntro{
    background:#fff;
}

.introGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.introTitle span{
    display:inline-block;
    color:var(--mainColor,#f5b400);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.introTitle h2{
    font-size:42px;
    line-height:1.4;
    color:#222;
    font-weight:700;
}

.introText p{
    color:#666;
    line-height:2;
    font-size:17px;
}

/*==============================
SERVICE LIST
==============================*/

.serviceList{
    background:#f8f8f8;
}

.serviceItem{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:120px;
}

.serviceItem:last-child{
    margin-bottom:0;
}

.serviceItem.reverse{
    direction:rtl;
}

.serviceItem.reverse>*{
    direction:ltr;
}

.serviceImg{
    overflow:hidden;
    border-radius:24px;
    position:relative;
}

.serviceImg img{
    width:100%;
    display:block;
    transition:.6s;
}

.serviceItem:hover img{
    transform:scale(1.08);
}

.serviceContent span{
    color:var(--mainColor,#f5b400);
    font-weight:700;
    font-size:15px;
    letter-spacing:3px;
}

.serviceContent h2{
    font-size:42px;
    margin:18px 0 25px;
    color:#222;
}

.serviceContent p{
    color:#666;
    line-height:2;
    margin-bottom:35px;
}

.serviceContent a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:170px;
    height:55px;
    border:2px solid #222;
    color:#222;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
    border-radius:50px;
}

.serviceContent a:hover{
    background:#222;
    color:#fff;
}

/*==============================
PROCESS
==============================*/

.processArea{
    background:#fff;
}

.sectionTitle.center{
    text-align:center;
    margin-bottom:70px;
}

.sectionTitle span{
    display:inline-block;
    color:var(--mainColor,#f5b400);
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:12px;
}

.sectionTitle h2{
    font-size:42px;
    color:#222;
    margin-bottom:18px;
}

.sectionTitle p{
    color:#777;
}

.processList{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.processItem{
    background:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:22px;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
    position:relative;
    transition:.35s;
}

.processItem:hover{
    transform:translateY(-10px);
}

.processItem span{
    display:inline-flex;
    width:90px;
    height:90px;
    border-radius:50%;
    background:#f5b400;
    color:#222;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    margin-bottom:30px;
    line-height:1.3;
    font-size:13px;
}

.processItem h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.processItem p{
    color:#666;
    line-height:1.9;
}

/*==============================
CTA
==============================*/
/*
.serviceCta{
    background:#222;
    color:#fff;
    padding:90px 0;
}
*/
.serviceCta {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(34, 34, 34, .96), rgba(17, 17, 17, .88)), url('../images/cta.jpg') center/cover fixed;
    overflow: hidden
}


.ctaBox{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.ctaBox span{
    color:#f5b400;
    letter-spacing:2px;
    font-size:14px;
    display:block;
    margin-bottom:15px;
}

.ctaBox h2{
    font-size:44px;
    margin-bottom:20px;
}

.ctaBox p{
    color:#ddd;
    line-height:2;
}

.ctaBtns{
    display:flex;
    gap:18px;
    flex-shrink:0;
}

.ctaBtns a{
    width:180px;
    height:60px;
    border-radius:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-weight:bold;
    transition:.35s;
}

.ctaBtns a:first-child{
    background:#f5b400;
    color:#222;
}

.ctaBtns a:last-child{
    border:2px solid #fff;
    color:#fff;
}

.ctaBtns a:hover{
    transform:translateY(-5px);
}



/*========================================
Tablet
========================================*/
@media screen and (max-width:1200px){

.introGrid{
    gap:50px;
}

.introTitle h2{
    font-size:36px;
}

.serviceItem{
    gap:50px;
}

.serviceContent h2{
    font-size:34px;
}

.processList{
    grid-template-columns:repeat(2,1fr);
}

.ctaBox{
    gap:40px;
}

.ctaBox h2{
    font-size:38px;
}

}

/*========================================
Pad
========================================*/
@media screen and (max-width:992px){

.introGrid{
    grid-template-columns:1fr;
    gap:35px;
}

.introTitle{
    text-align:center;
}

.introText{
    text-align:center;
}

.serviceItem,
.serviceItem.reverse{
    grid-template-columns:1fr;
    direction:ltr;
    gap:35px;
    margin-bottom:80px;
}

.serviceImg{
    order:1;
}

.serviceContent{
    order:2;
}

.serviceContent{
    text-align:center;
}

.serviceContent a{
    margin:auto;
}

.processList{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.ctaBox{
    flex-direction:column;
    text-align:center;
}

.ctaBtns{
    justify-content:center;
    flex-wrap:wrap;
}

}

/*========================================
Mobile
========================================*/
@media screen and (max-width:768px){

.serviceIntro{
    padding:70px 0;
}

.serviceList{
    padding:70px 0;
}

.processArea{
    padding:70px 0;
}

.serviceCta{
    padding:70px 0;
}

.introTitle h2{
    font-size:30px;
}

.introText p{
    font-size:16px;
}

.serviceItem{
    margin-bottom:60px;
}

.serviceImg{
    border-radius:18px;
}

.serviceContent span{
    font-size:13px;
    letter-spacing:2px;
}

.serviceContent h2{
    font-size:28px;
    margin:12px 0 18px;
}

.serviceContent p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
}

.serviceContent a{
    width:160px;
    height:50px;
    font-size:15px;
}

.sectionTitle{
    margin-bottom:45px !important;
}

.sectionTitle h2{
    font-size:30px;
}

.processList{
    grid-template-columns:1fr;
    gap:20px;
}

.processItem{
    padding:35px 25px;
}

.processItem span{
    width:72px;
    height:72px;
    font-size:12px;
    margin-bottom:20px;
}

.processItem h3{
    font-size:22px;
}

.ctaBox h2{
    font-size:30px;
}

.ctaBtns{
    width:100%;
    flex-direction:column;
}

.ctaBtns a{
    width:100%;
    max-width:300px;
    margin:auto;
}

}

/*========================================
Small Mobile
========================================*/
@media screen and (max-width:480px){

.introTitle h2{
    font-size:26px;
}

.serviceContent h2{
    font-size:24px;
}

.sectionTitle h2{
    font-size:26px;
}

.ctaBox h2{
    font-size:26px;
}

.processItem{
    padding:30px 20px;
}

.processItem h3{
    font-size:20px;
}

.processItem p{
    font-size:14px;
}

.serviceContent p,
.introText p,
.ctaBox p{
    font-size:14px;
    line-height:1.8;
}

}