/* ===============================
   SERVICE PAGE
=============================== */

.service-page{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

/* ===============================
   HERO
=============================== */

.service-hero{
    background:#fff;
    border-radius:25px;
    padding:55px 60px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:35px;
}

.service-hero h1{
    margin:0;
    font-size:56px;
    line-height:1.15;
    color:#111;
}

/* ===============================
   CONTENT
=============================== */

.service-content{
    background:#fff;
    border-radius:25px;
    padding:55px;
    margin-top:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-content h2{
    font-size:38px;
    margin:50px 0 20px;
    color:#111;
    position:relative;
    padding-bottom:15px;
}

.service-content h2:after{
    content:"";
    width:80px;
    height:4px;
    border-radius:20px;
    background:#00b96b;
    position:absolute;
    left:0;
    bottom:0;
}

.service-content h3{
    font-size:28px;
    margin:35px 0 15px;
    color:#111;
}

.service-content p{
    font-size:19px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}

.service-content img{

    display:block;

    width:100%;

    max-width:100%;

    height:auto;

    aspect-ratio:16 / 9;

    object-fit:cover;

    border-radius:20px;

    margin:30px auto;

}

/* ===============================
   LIST
=============================== */

.service-content ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.service-content li{
    position:relative;
    padding-left:34px;
    margin-bottom:15px;
    font-size:18px;
    line-height:1.8;
}

.service-content li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#00b96b;
    font-weight:bold;
}

/* ===============================
   FAQ
=============================== */

.faq{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#f8f8f8;
    border-radius:18px;
    padding:28px;
}

.faq-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-text{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* ===============================
   OTHER SERVICES
=============================== */

.services-small{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.small-card{
    background:#f7f7f7;
    border-radius:18px;
    padding:24px;
    text-align:center;
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:700;
    transition:.25s;
}

.small-card:hover{
    background:#00b96b;
    color:#fff;
}

/* ===============================
   CONTACT
=============================== */

.contact-buttons{
    display:flex;
    gap:15px;
    margin:25px 0 35px;
    flex-wrap:wrap;
}

.contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.contact-btn.green{
    background:#00b96b;
    color:#fff;
}

.contact-btn.dark{
    background:#111;
    color:#fff;
}

.service-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-form input{
    height:58px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:17px;
}

.service-form button{
    height:58px;
    border:none;
    border-radius:14px;
    background:#00b96b;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.service-form button:hover{
    background:#00995a;
}

/* ===============================
   MAP
=============================== */

.service-map iframe{
    width:100%;
    height:500px;
    border:0;
    border-radius:20px;
}

/* ===============================
   MOBILE
=============================== */

@media(max-width:768px){

.service-page{
    padding:10px;
}

.service-hero{
    padding:30px 25px;
}

.service-hero h1{
    font-size:36px;
}

.service-content{
    padding:25px;
}

.service-content h2{
    font-size:28px;
}

.service-content h3{
    font-size:22px;
}

.service-content p,
.service-content li{
    font-size:16px;
}

.services-small{
    grid-template-columns:1fr;
}

.contact-buttons{
    flex-direction:column;
}

.contact-btn{
    width:100%;
}

}