/*==================================================
    BUSINESS HOURS SECTION
==================================================*/

.business-hours-section{

    padding:100px 0;

    background:#ffffff;

}

/*==================================================
    SECTION HEADER
==================================================*/

.business-hours-section .section-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.business-hours-section .section-badge{

    display:inline-block;

    padding:8px 20px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.business-hours-section .section-header h2{

    font-size:42px;

    font-weight:800;

    color:#1f2937;

    line-height:1.3;

    margin-bottom:18px;

}

.business-hours-section .section-header p{

    font-size:17px;

    color:#6b7280;

    line-height:1.9;

}

/*==================================================
    WRAPPER
==================================================*/

.business-hours-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    align-items:start;

}

/*==================================================
    COMMON CARD
==================================================*/

.hours-card,
.why-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:22px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.05);

    transition:.35s;

}

.hours-card:hover,
.why-card:hover{

    transform:translateY(-5px);

    border-color:#00A651;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*==================================================
    CARD TITLE
==================================================*/

.hours-card h3,
.why-card h3{

    font-size:28px;

    font-weight:700;

    color:#1f2937;

    margin-bottom:25px;

}

/*==================================================
    HOURS LIST
==================================================*/

.hours-list{

    list-style:none;

    margin:0;

    padding:0;

}

.hours-list li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #edf2f7;

}

.hours-list li:last-child{

    border-bottom:none;

}

.hours-list span{

    font-weight:600;

    color:#374151;

}

.hours-list strong{

    color:#00A651;

    font-weight:700;

}

/*==================================================
    SUPPORT BOX
==================================================*/

.support-box,
.holiday-box{

    margin-top:30px;

    padding:22px;

    background:#f8fafc;

    border-left:4px solid #00A651;

    border-radius:12px;

}

.support-box h4,
.holiday-box h4{

    font-size:18px;

    color:#1f2937;

    margin-bottom:10px;

}

.support-box p,
.holiday-box p{

    color:#6b7280;

    line-height:1.8;

}

/*==================================================
    WHY CARD
==================================================*/

.why-card > p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:30px;

}

/*==================================================
    FEATURE LIST
==================================================*/

.feature-list{

    list-style:none;

    margin:0;

    padding:0;

    display:flex;

    flex-direction:column;

    gap:16px;

}

.feature-list li{

    padding:14px 18px;

    background:#f8fafc;

    border-radius:10px;

    font-weight:600;

    color:#374151;

    transition:.30s;

}

.feature-list li:hover{

    background:#e8f8ef;

    color:#00A651;

}
/*==================================================
    CONTACT BOX
==================================================*/

.contact-box{

    margin-top:35px;

    padding:25px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:14px;

}

.contact-box h4{

    font-size:22px;

    font-weight:700;

    color:#1f2937;

    margin-bottom:12px;

}

.contact-box p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:20px;

}

/*==================================================
    BUTTON
==================================================*/

.contact-box .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    font-size:15px;

    font-weight:600;

    border-radius:10px;

    transition:.35s;

}

.contact-box .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,166,81,.20);

}

/*==================================================
    LARGE DESKTOP
==================================================*/

@media (min-width:1400px){

    .business-hours-section{

        padding:120px 0;

    }

}

/*==================================================
    LAPTOP
==================================================*/

@media (max-width:1200px){

    .hours-card,
    .why-card{

        padding:30px;

    }

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:992px){

    .business-hours-section{

        padding:80px 0;

    }

    .business-hours-wrapper{

        grid-template-columns:1fr;

    }

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:768px){

    .business-hours-section .section-header{

        margin-bottom:45px;

    }

    .business-hours-section .section-header h2{

        font-size:32px;

    }

    .hours-list li{

        flex-direction:column;

        align-items:flex-start;

        gap:6px;

    }

}

/*==================================================
    SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .business-hours-section{

        padding:65px 0;

    }

    .business-hours-section .section-header h2{

        font-size:28px;

    }

    .business-hours-section .section-header p{

        font-size:15px;

    }

    .hours-card,
    .why-card{

        padding:22px;

        border-radius:18px;

    }

    .hours-card h3,
    .why-card h3{

        font-size:24px;

    }

    .support-box,
    .holiday-box,
    .contact-box{

        padding:18px;

    }

    .feature-list li{

        padding:12px 15px;

        font-size:14px;

    }

    .contact-box .btn{

        width:100%;

        font-size:14px;

    }

}