/*=========================================
SERVICES PAGE
=========================================*/

.services-hero{

padding:90px 0 70px;

background:linear-gradient(180deg,#FFFDF8,#FFF8EC);

text-align:center;

}

.section-tag{

display:inline-block;

padding:10px 22px;

background:#FFF2D3;

color:#B88400;

font-weight:700;

border-radius:40px;

margin-bottom:25px;

}

.services-title{

font-family:'Cinzel',serif;

font-size:64px;

font-weight:700;

line-height:1.15;

color:#2E1B0E;

max-width:900px;

margin:auto;

}

.services-title span{

color:#D4A017;

}

.services-description{

max-width:850px;

margin:35px auto;

font-size:20px;

line-height:1.9;

color:#666;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:18px;

margin-top:35px;

flex-wrap:wrap;

}
/*=========================================
SERVICE SECTION
=========================================*/

.service-section{
    padding:90px 0;
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.service-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 25px 55px rgba(0,0,0,.12);
    display:block;
}

.service-content span{
    display:inline-block;
    background:#FFF3D5;
    color:#C28A00;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.service-content h2{
    font-family:'Cinzel',serif;
    font-size:42px;
    color:#3A2615;
    margin-bottom:20px;
}

.service-content p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
}

.service-info{
    background:#FFFDF8;
    border:1px solid #F1E5C6;
    border-radius:18px;
    padding:22px;
    margin-bottom:25px;
}

.service-info h4{
    color:#C28A00;
    margin-bottom:15px;
    font-size:18px;
}

.service-info ul{
    margin:0;
    padding-left:20px;
}

.service-info li{
    margin-bottom:12px;
    color:#555;
}

.service-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.service-buttons a{

min-width:190px;

text-align:center;

border-radius:50px;

padding:16px 28px;

font-weight:700;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.service-grid{
    grid-template-columns:1fr;
}

.service-image{
    order:-1;
}

.services-hero h1{
    font-size:42px;
}

.service-content h2{
    font-size:32px;
}

}

@media(max-width:768px){

.services-hero{
    padding:70px 0;
}

.services-hero p{
    font-size:16px;
}

.service-section{
    padding:70px 0;
}

.service-buttons{
    flex-direction:column;
}

.service-buttons a{
    width:100%;
}

}
/*==================================
SERVICES GRID
===================================*/

.services-grid-section{

padding:30px 0 80px;

background:#fff;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:24px;

max-width:1200px;

margin:auto;

}

.service-item{

background:#fff;

border:2px solid #F3E6C9;

border-radius:20px;

padding:28px 20px;

min-height:150px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

cursor:pointer;

transition:.35s;

box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.service-item span{

font-size:42px;

margin-bottom:15px;

transition:.35s;

}

.service-item{

font-size:17px;

font-weight:700;

line-height:1.5;

color:#35210E;

}

.service-item:hover{

transform:translateY(-8px);

border-color:#D4A017;

box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.service-item:hover span{

transform:scale(1.15);

}

.service-item.active{

background:linear-gradient(135deg,#D4A017,#E5B93C);

border-color:#D4A017;

color:#fff;

box-shadow:0 20px 45px rgba(212,160,23,.30);

}

.service-item.active span{

transform:scale(1.1);

}

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.services-grid{

grid-template-columns:1fr;

}

}
/*==================================
SERVICE DETAILS
===================================*/

.service-details-section{

padding:80px 0;

background:#fff;

}

.service-layout{

display:grid;

grid-template-columns:460px 1fr;

gap:70px;

align-items:center;

}

.service-image img{

border-radius:24px;

box-shadow:0 35px 80px rgba(0,0,0,.16);

transition:.4s;

}
.service-image img:hover{

transform:scale(1.02);

}

.service-badge{

display:inline-block;

padding:10px 18px;

background:#FFF2D3;

color:#B88400;

border-radius:30px;

font-weight:700;

margin-bottom:18px;

}

.service-content h2{

font-size:52px;

line-height:1.2;

margin-bottom:20px;

}

.service-content p{

font-size:18px;

line-height:2;

max-width:700px;

}

.service-highlights{

background:#FFFDF8;

padding:25px;

border-radius:20px;

border:1px solid #F1E2BC;

margin-bottom:30px;

}

.service-highlights ul{

margin:0;

padding-left:20px;

}

.service-highlights li{

margin-bottom:15px;

font-size:17px;

}

@media(max-width:992px){

.service-layout{

grid-template-columns:1fr;

}

}