/* Service Hours Styling */
.service-hours-detailed {
    margin-top: 15px;
}

.service-hours-card {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.service-hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-day {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-time {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border-left: 3px solid rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hours-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .schedule-day {
        font-size: 0.95rem;
    }
    
    .schedule-time {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-hours-card {
        padding: 15px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-subtitle {
        font-size: 0.8rem;
    }
    
    .schedule-item {
        padding: 12px;
    }
}

/* Animation Effects */
.service-hours-card {
    transition: all 0.3s ease;
}

.service-hours-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.schedule-item {
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.schedule-time {
    transition: all 0.2s ease;
}

.schedule-time:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.8);
}

/* Service Hours Footer Styling - New Design */
.footer-service-section {
    margin-bottom: 30px;
}

.footer-service-section .footer-heading {
    color: #ff9000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-service-section .footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ffb84d);
    border-radius: 2px;
}

.service-hours-container {
    width: 100%;
}

.service-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-hours-card {
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.12), rgba(255, 144, 0, 0.08));
    border: 1px solid rgba(255, 144, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-hours-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9000, #ffb84d);
}

.service-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.2);
    border-color: rgba(255, 144, 0, 0.4);
}

.service-day-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 144, 0, 0.15);
}

.service-icon {
    color: #ff9000;
    font-size: 16px;
    margin-right: 8px;
}

.service-day {
    color: #ff9000;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-times-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-time-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-time-item:hover {
    background: rgba(255, 144, 0, 0.1);
    transform: translateX(5px);
}

.time-icon {
    color: #ff9000;
    font-size: 12px;
    margin-right: 6px;
    opacity: 0.8;
}

.service-time {
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-hours-card {
        padding: 15px;
    }
    
    .footer-service-section .footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .service-day {
        font-size: 13px;
        font-weight: 600;
    }
    
    .service-time {
        font-size: 11px;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .service-hours-card {
        padding: 12px;
    }
    
    .service-day-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .service-icon {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .time-icon {
        font-size: 14px;
        margin-right: 8px;
    }
}

/* Styling untuk Layout Vertikal Jam Layanan - Footer 3 Kolom */
.service-hours-vertical {
    width: 100%;
}

.service-day-block {
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.08), rgba(255, 144, 0, 0.06));
    border: 1px solid rgba(255, 144, 0, 0.18);
    border-radius: 8px;
    padding: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-day-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ffb84d);
}

.service-day-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 144, 0, 0.2);
    border-color: rgba(255, 144, 0, 0.4);
}

.service-times-vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.service-times-vertical .service-time-item {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-times-vertical .service-time-item:hover {
    background: rgba(255, 144, 0, 0.1);
    transform: translateX(3px);
}

/* Responsive untuk Layout Vertikal */
@media (max-width: 768px) {
    .service-day-block {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .service-times-vertical {
        gap: 4px;
        margin-top: 6px;
    }
    
    .service-times-vertical .service-time-item {
        padding: 2px 4px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .service-day-block {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .service-day-block .service-day-header {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }
    
    .service-times-vertical {
        gap: 3px;
        margin-top: 5px;
    }
}