/* --------------------------
        HERO HEADER
--------------------------- */
.page-hero {
    background: linear-gradient(135deg, #0b2c3d, #14668a);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
}
.page-hero p {
    font-size: 19px;
    opacity: .85;
}



/* --------------------------
       WORKTIME SECTION
--------------------------- */
.worktime-section {
    padding: 60px 20px 30px;
    background: #f6f9ff;
}
.worktime-box {
    max-width: 700px;
    margin: auto;
    padding: 35px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.worktime-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 800;
    color: #0b2c3d;
}
.worktime-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}
.worktime-item strong {
    font-weight: 700;
    color: #0b2c3d;
}
.worktime-item.weekend strong {
    color: #d60000;
}



/* --------------------------
      SERVICES SECTION
--------------------------- */
.services-section {
    padding: 60px 20px 90px;
}
.services-wrapper {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0b2c3d;
}
.section-sub {
    font-size: 17px;
    margin-top: 10px;
    color: #666;
}

.services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 42px;
    color: #0b75c9;
    margin-bottom: 18px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 15px;
    color: #555;
}


/* --------------------------
        MOBILE FIXES
--------------------------- */
@media (max-width: 600px) {
    .page-hero h1 {
        font-size: 32px;
    }
    .service-card i {
        font-size: 34px;
    }
}
