/* ===========================================================
   HOME SECTION
   Services + Statistics + About
=========================================================== */

.services-section{

    padding:30px 0 70px;

    background:transparent;

}

.services-section .container{

    width:min(1360px,calc(100% - 56px));

    margin:auto;

}

/* ===========================
   HEADER
=========================== */

.section-header{

    text-align:center;

    margin-bottom:28px;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 22px;

    border-radius:999px;

    background:#EDF5E8;

    color:#6B8A5C;

    font-size:15px;

    font-weight:700;

}

.section-header h2{

    margin:11px 0 10px;

    font-size:34px;

    font-weight:800;

    color:#222;

}

.section-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    color:#6B8A5C;

}

.section-divider span{

    width:70px;

    height:1px;

    background:#dcdcdc;

}

/* ===========================
   SERVICES
=========================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:14px;

    margin-top:10px;

}

.service-card{

    height:155px;

    border-radius:22px;

    background:#fff;

    border:1px solid #ECECEC;

    box-shadow:0 8px 22px rgba(0,0,0,.05);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-6px);

}

.service-card img{

    width:56px;

    height:56px;

    object-fit:contain;

    margin-bottom:18px;

}

.service-card h3{

    font-size:14px;

    line-height:1.6;

    font-weight:700;

    color:#222;

    margin-bottom:14px;

    text-align:center;

}

.service-card a{

    font-size:12px;

    color:#6B8A5C;

    font-weight:700;

    text-decoration:none;

}
/* ===========================
   STATISTICS
=========================== */

.statistics-bar{

    margin-top:24px;
    margin-bottom:0;
    background:#6B8A5C;

    border-radius:22px;

    overflow:hidden;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.stat-item{

    padding:18px 10px;

    text-align:center;

    border-left:1px solid rgba(255,255,255,.12);

}

.stat-item:last-child{

    border-left:none;

}

.stat-item h2{

    color:#fff;

    font-size:26px;

    line-height:1;

    font-weight:800;

    margin-bottom:6px;

}

.stat-item span{

    color:#EDF5E8;

    font-size:13px;

    font-weight:500;

}

/* ===========================
   ABOUT
=========================== */
/* =====================================
   ABOUT
===================================== */

.about-wrapper{

    margin-top:18px;

    display:grid;

    grid-template-columns:1fr 520px;

    align-items:center;

    gap:70px;

}

.about-left{

    order:2;

}

.about-right{

    order:1;

}

.clinic-image{

    width:100%;

    height:470px;

    object-fit:cover;

    border-radius:28px;

    display:block;

}

.about-right .section-badge{

    margin-bottom:18px;

}

.about-right h2{

    font-size:46px;

    line-height:1.25;

    margin:0 0 18px;

    color:#222;

    font-weight:800;

}

.about-right h2 span{

    display:block;

    color:#6B8A5C;

    font-size:28px;

    margin-top:8px;

}

.about-right p{

    font-size:17px;

    line-height:2;

    color:#666;

    margin-bottom:30px;

    max-width:640px;

}

.about-features{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:30px;

}

.feature{

    background:#F6F8F4;

    padding:14px 20px;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

}

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 34px;

    background:#6B8A5C;

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

}

/* ===========================
   TABLET
=========================== */

@media (max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .statistics-bar{

        grid-template-columns:repeat(2,1fr);

    }

    .about-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .about-image{

        max-width:650px;

        margin:auto;

    }

    .why-card{

        right:30px;

        width:300px;

    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .statistics-bar{

        grid-template-columns:1fr;

    }

    .section-header h2{

        font-size:34px;

    }

    .about-content h2{

        font-size:34px;

    }

    .about-content h2 span{

        font-size:22px;

    }

    .clinic-image{

        height:420px;

    }

    .why-card{

        position:relative;

        top:auto;

        right:auto;

        transform:none;

        width:100%;

        margin-top:20px;

    }

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

.service-icon{

    width:44px;

    height:44px;

    border-radius:20px;

    background:#EEF6EA;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#6B8A5C;

    font-size:22px;

    margin-bottom:12px;

}

/* ======================================
   SMALL DESKTOP
====================================== */

@media (max-width:1400px){

    .services-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .services-section{

        padding:70px 0;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .statistics-bar{

        grid-template-columns:repeat(2,1fr);

    }

    .about-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .about-image{

        max-width:620px;

        margin:auto;

    }

    .why-card{

        right:20px;

    }

}

/* ======================================
   MOBILE
====================================== */

@media (max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .statistics-bar{

        grid-template-columns:1fr;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .section-header h2{

        font-size:34px;

    }

    .about-content h2{

        font-size:34px;

    }

    .about-content h2 span{

        font-size:22px;

    }

    .clinic-image{

        height:420px;

    }

    .why-card{

        position:relative;

        right:auto;

        top:auto;

        transform:none;

        width:100%;

        margin-top:20px;

    }

}
.service-icon{

    width:68px;

    height:68px;

    border-radius:20px;

    background:#EEF6EA;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#6B8A5C;

    margin-bottom:18px;

}
